From 09d635ce9b3340d99ae629f9a25c93ee256105dc Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 24 Feb 2021 08:59:27 +0100 Subject: [PATCH] hnbgw: Add missing break statement We don't want to print usage information after the VTY reference XML. Change-Id: Ia729134a8f18d53274bbc063aa39508c7dcc1f72 --- src/hnbgw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hnbgw.c b/src/hnbgw.c index 965e8a41..9211a7e2 100644 --- a/src/hnbgw.c +++ b/src/hnbgw.c @@ -472,6 +472,7 @@ static void handle_options(int argc, char **argv) switch (c) { case 0: handle_long_options(argv[0], long_option); + break; case 'h': print_usage(); print_help();