diff options
author | Ron Yorston | 2018-03-20 11:41:28 +0100 |
---|---|---|
committer | Denys Vlasenko | 2018-03-26 02:05:47 +0200 |
commit | 2afdcc77ccdd60f2632d2ee79c47517536a14a07 (patch) | |
tree | 1a2e36eb14c62c01cded7a7de785af9beeefe6fd | |
parent | c74f1d2cb48c6a9216ea901178e43c02ac7da0dc (diff) | |
download | busybox-2afdcc77ccdd60f2632d2ee79c47517536a14a07.zip busybox-2afdcc77ccdd60f2632d2ee79c47517536a14a07.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/ssl_client.c b/networking/ssl_client.c index d479846..3150712 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; |