From: Denys Vlasenko Date: Sun, 9 Jun 2019 09:32:23 +0000 (+0200) Subject: tftpd: revert erroneous change X-Git-Tag: 1_31_0~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=94ce1c0ebbdb59caaa2a91206ae98edf778ff556;p=oweals%2Fbusybox.git tftpd: revert erroneous change Signed-off-by: Denys Vlasenko --- 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) peer_lsa->len = our_lsa->len; /* Shifting to not collide with TFTP_OPTs */ - opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:lm:", &user_opt, NULL) << 8); + opt = option_mask32 = TFTPD_OPT | (getopt32(argv, "rcu:l", &user_opt) << 8); argv += optind; if (opt & TFTPD_OPT_l) { openlog(applet_name, LOG_PID, LOG_DAEMON);