fixing bugs revealed by randomconfig runs
authorDenis Vlasenko <vda.linux@googlemail.com>
Sat, 20 Jan 2007 16:54:19 +0000 (16:54 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sat, 20 Jan 2007 16:54:19 +0000 (16:54 -0000)
include/applets.h
networking/nc.c
networking/tftp.c

index 465ecdbdd2c073fe2689fc22ea8d8121cfecffcc..397a8b7893f849faaf9bb17f6c3ab07967bfc45b 100644 (file)
@@ -287,7 +287,9 @@ USE_TEE(APPLET(tee, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
 USE_TELNET(APPLET(telnet, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
 USE_TELNETD(APPLET(telnetd, _BB_DIR_USR_SBIN, _BB_SUID_NEVER))
 USE_TEST(APPLET(test, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
+#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
 USE_TFTP(APPLET(tftp, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
+#endif
 USE_TIME(APPLET(time, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
 USE_TOP(APPLET(top, _BB_DIR_USR_BIN, _BB_SUID_NEVER))
 USE_TOUCH(APPLET(touch, _BB_DIR_BIN, _BB_SUID_NEVER))
index 37e658d4bcaad5245bd9bdadd03a4ad4c32df3e9..09d89b0a8c6dead45e76065e7905d4309c259955 100644 (file)
@@ -23,8 +23,8 @@ int nc_main(int argc, char **argv)
        /* sfd sits _here_ only because of "repeat" option (-l -l). */
        int sfd = sfd; /* for gcc */
        int cfd = 0;
+       unsigned lport = 0;
        SKIP_NC_SERVER(const) unsigned do_listen = 0;
-       SKIP_NC_SERVER(const) unsigned lport = 0;
        SKIP_NC_EXTRA (const) unsigned wsecs = 0;
        SKIP_NC_EXTRA (const) unsigned delay = 0;
        SKIP_NC_EXTRA (const int execparam = 0;)
index 9aa87d57e6d3ce8ef4c12328274159febd9072bc..eb192d8fc9b6ff8f238246915bdf3797bf9b2b6b 100644 (file)
@@ -22,6 +22,8 @@
 #include "busybox.h"
 
 
+#if ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT
+
 #define TFTP_BLOCKSIZE_DEFAULT 512     /* according to RFC 1350, don't change */
 #define TFTP_TIMEOUT 5 /* seconds */
 #define TFTP_NUM_RETRIES 5 /* number of retries */
@@ -56,8 +58,8 @@ static const char *const tftp_bb_error_msg[] = {
 #else
 #define USE_GETPUT(a) a
 /* masks coming from getpot32 */
-#define CMD_GET(cmd) (cmd & 1)
-#define CMD_PUT(cmd) (cmd & 2)
+#define CMD_GET(cmd) ((cmd) & 1)
+#define CMD_PUT(cmd) ((cmd) & 2)
 #endif
 /* NB: in the code below
  * CMD_GET(cmd) and CMD_GET(cmd) are mutually exclusive
@@ -508,3 +510,5 @@ int tftp_main(int argc, char **argv)
        }
        return result;
 }
+
+#endif /* ENABLE_FEATURE_TFTP_GET || ENABLE_FEATURE_TFTP_PUT */