Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2018-03-20 13:41:28 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2018-03-26 03:05:47 +0300
commit2afdcc77ccdd60f2632d2ee79c47517536a14a07 (patch)
tree1a2e36eb14c62c01cded7a7de785af9beeefe6fd
parentc74f1d2cb48c6a9216ea901178e43c02ac7da0dc (diff)
ssl_client: fix option parsing1_28_2
The wrong character was used to indicate options taking an integer parameter. Signed-off-by: Ron Yorston <rmy@pobox.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--networking/ssl_client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ssl_client.c b/networking/ssl_client.c
index d479846d7..315071206 100644
--- a/networking/ssl_client.c
+++ b/networking/ssl_client.c
@@ -30,7 +30,7 @@ int ssl_client_main(int argc UNUSED_PARAM, char **argv)
// INIT_G();
tls = new_tls_state();
- opt = getopt32(argv, "s:#r:#n:", &tls->ofd, &tls->ifd, &sni);
+ opt = getopt32(argv, "s:+r:+n:", &tls->ofd, &tls->ifd, &sni);
if (!(opt & 2)) {
/* -r N defaults to -s N */
tls->ifd = tls->ofd;