Blame SOURCES/tftp-hpa-0.39-tzfix.patch

0805be
diff -up tftp-hpa-0.49/tftpd/tftpd.c.tzfix tftp-hpa-0.49/tftpd/tftpd.c
0805be
--- tftp-hpa-0.49/tftpd/tftpd.c.tzfix	2008-10-20 18:08:31.000000000 -0400
0805be
+++ tftp-hpa-0.49/tftpd/tftpd.c	2008-11-25 11:45:27.000000000 -0500
0805be
@@ -350,6 +350,14 @@ int main(int argc, char **argv)
0805be
     const char *pidfile = NULL;
0805be
     u_short tp_opcode;
0805be
 
0805be
+    time_t my_time = 0;
0805be
+    struct tm* p_tm;
0805be
+    char envtz[10];
0805be
+    my_time = time(NULL);
0805be
+    p_tm = localtime(&my_time);
0805be
+    snprintf(envtz, sizeof(envtz) - 1, "UTC%+d", (p_tm->tm_gmtoff * -1)/3600);
0805be
+    setenv("TZ", envtz, 0);
0805be
+
0805be
     /* basename() is way too much of a pain from a portability standpoint */
0805be
 
0805be
     p = strrchr(argv[0], '/');