Blame SOURCES/tftp-0.49-chk_retcodes.patch

ecbeaa
diff -up tftp-hpa-0.49/tftpd/tftpd.c.chk_retcodes tftp-hpa-0.49/tftpd/tftpd.c
ecbeaa
--- tftp-hpa-0.49/tftpd/tftpd.c.chk_retcodes	2009-01-15 15:28:50.000000000 +0100
ecbeaa
+++ tftp-hpa-0.49/tftpd/tftpd.c	2009-01-15 15:31:36.000000000 +0100
ecbeaa
@@ -932,7 +932,10 @@ int main(int argc, char **argv)
ecbeaa
             exit(EX_OSERR);
ecbeaa
         }
ecbeaa
 #ifdef __CYGWIN__
ecbeaa
-        chdir("/");             /* Cygwin chroot() bug workaround */
ecbeaa
+				if (chdir("/") < 0) {			/* Cygwin chroot() bug workaround */
ecbeaa
+					syslog(LOG_ERR, "chroot: %m");
ecbeaa
+					exit(EX_OSERR);
ecbeaa
+				}
ecbeaa
 #endif
ecbeaa
     }
ecbeaa
 #ifdef HAVE_SETREGID