diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2019-06-09 11:32:23 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2019-06-09 11:32:23 +0200 |
commit | 94ce1c0ebbdb59caaa2a91206ae98edf778ff556 (patch) | |
tree | 51a7f29536eef6bfbd5fed76c5c01739ac6e3811 | |
parent | 3b8025f1327c86b7252855b60b303e44aca9adbc (diff) | |
download | busybox-w32-94ce1c0ebbdb59caaa2a91206ae98edf778ff556.tar.gz busybox-w32-94ce1c0ebbdb59caaa2a91206ae98edf778ff556.tar.bz2 busybox-w32-94ce1c0ebbdb59caaa2a91206ae98edf778ff556.zip |
tftpd: revert erroneous change
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | networking/tftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tftp.c b/networking/tftp.c index 30232ef8e..848645552 100644 --- a/networking/tftp.c +++ b/networking/tftp.c | |||
@@ -888,7 +888,7 @@ int tftpd_main(int argc UNUSED_PARAM, char **argv) | |||
888 | peer_lsa->len = our_lsa->len; | 888 | peer_lsa->len = our_lsa->len; |
889 | 889 | ||
890 | /* Shifting to not collide with TFTP_OPTs */ | 890 | /* Shifting to not collide with TFTP_OPTs */ |
891 | opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:lm:", &user_opt, NULL) << 8); | 891 | opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:l", &user_opt) << 8); |
892 | argv += optind; | 892 | argv += optind; |
893 | if (opt & TFTPD_OPT_l) { | 893 | if (opt & TFTPD_OPT_l) { |
894 | openlog(applet_name, LOG_PID, LOG_DAEMON); | 894 | openlog(applet_name, LOG_PID, LOG_DAEMON); |