From 85164fa06eac734dd853b7e08c1762ada06e9a2c Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 21 Nov 2009 15:44:56 +0100 Subject: [PATCH] ping: use |=, not =, when combine option bit mask Signed-off-by: Denys Vlasenko --- networking/ping.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/ping.c b/networking/ping.c index 0ca41b9..c7b6cbe 100644 --- a/networking/ping.c +++ b/networking/ping.c @@ -726,7 +726,7 @@ static int common_ping_main(int opt, char **argv) /* exactly one argument needed; -v and -q don't mix; -c NUM, -w NUM, -W NUM */ opt_complementary = "=1:q--v:v--q:c+:w+:W+"; - opt = getopt32(argv, OPT_STRING, &pingcount, &str_s, &deadline, &timeout, &str_I); + opt |= getopt32(argv, OPT_STRING, &pingcount, &str_s, &deadline, &timeout, &str_I); if (opt & OPT_s) datalen = xatou16(str_s); // -s if (opt & OPT_I) { // -I -- 2.7.4