[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1358948265-20867-3-git-send-email-jsynacek@redhat.com>
Date: Wed, 23 Jan 2013 14:37:45 +0100
From: Jan Synacek <jsynacek@...hat.com>
To: yoshfuji@...ux-ipv6.org
Cc: netdev@...r.kernel.org, Jan Synacek <jsynacek@...hat.com>
Subject: [PATCH 2/2] ninfod: Make -v exit correctly.
Signed-off-by: Jan Synacek <jsynacek@...hat.com>
---
ninfod/ninfod.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/ninfod/ninfod.c b/ninfod/ninfod.c
index 58b15aa..52cf446 100644
--- a/ninfod/ninfod.c
+++ b/ninfod/ninfod.c
@@ -639,12 +639,15 @@ int main (int argc, char **argv)
parse_args(argc, argv);
- if (opt_h || opt_v)
- print_copying();
if (opt_h) {
+ print_copying();
print_usage();
exit(1);
}
+ if (opt_v) {
+ print_copying();
+ return 0;
+ }
limit_capabilities();
--
1.8.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists