diff options
author | Ron Yorston <rmy@pobox.com> | 2018-03-20 11:41:28 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-03-20 11:41:51 +0100 |
commit | b5820d9fd88bb6cb1dfd1a934a3d346336d5cac2 (patch) | |
tree | d39a02faed461606c969e631c41e68da9e096250 /networking | |
parent | b3e98b1ccc86ae6a4b3ac242d48412a89ca8b8ed (diff) | |
download | busybox-b5820d9fd88bb6cb1dfd1a934a3d346336d5cac2.tar.gz |
ssl_client: fix option parsing
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>
Diffstat (limited to 'networking')
-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 eb84e7726..875352d18 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, "es:#r:#n:", &tls->ofd, &tls->ifd, &sni); + opt = getopt32(argv, "es:+r:+n:", &tls->ofd, &tls->ifd, &sni); if (!(opt & (1<<2))) { /* -r N defaults to -s N */ tls->ifd = tls->ofd; |