aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/tcpudp.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/networking/tcpudp.c b/networking/tcpudp.c
index a90e3f80a..c914221ae 100644
--- a/networking/tcpudp.c
+++ b/networking/tcpudp.c
@@ -270,17 +270,22 @@ int tcpudpsvd_main(int argc UNUSED_PARAM, char **argv)
270 270
271 tcp = (applet_name[0] == 't'); 271 tcp = (applet_name[0] == 't');
272 272
273 /* "+": stop on first non-option */
273#ifdef SSLSVD 274#ifdef SSLSVD
274 opts = getopt32(argv, "^+" 275 opts = getopt32(argv, "^+"
275 "c:+C:i:x:u:l:Eb:+hpt:vU:/:Z:K:" /* -c NUM, -b NUM */ 276 "c:+C:i:x:u:l:Eb:+hpt:vU:/:Z:K:" /* -c NUM, -b NUM */
277 "\0"
276 /* 3+ args, -i at most once, -p implies -h, -v is a counter */ 278 /* 3+ args, -i at most once, -p implies -h, -v is a counter */
277 "\0" "-3:i--i:ph:vv", 279 "-3:i--i:ph:vv",
278 &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname, 280 &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
279 &backlog, &str_t, &ssluser, &root, &cert, &key, &verbose 281 &backlog, &str_t, &ssluser, &root, &cert, &key, &verbose
280 ); 282 );
281#else 283#else
282 /* "+": stop on first non-option */ 284 opts = getopt32(argv, "^+"
283 opts = getopt32(argv, "+c:+C:i:x:u:l:Eb:hpt:v", 285 "c:+C:i:x:u:l:Eb:+hpt:v" /* -c NUM, -b NUM */
286 "\0"
287 /* 3+ args, -i at most once, -p implies -h, -v is a counter */
288 "-3:i--i:ph:vv",
284 &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname, 289 &cmax, &str_C, &instructs, &instructs, &user, &preset_local_hostname,
285 &backlog, &str_t, &verbose 290 &backlog, &str_t, &verbose
286 ); 291 );