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

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