From 6364520eb4c795e85f7893ba02de860d132c1d2c Mon Sep 17 00:00:00 2001 From: Terry Dawson VK2KTJ Date: Sat, 22 Sep 2001 12:39:16 +0000 Subject: Fixed ax25ipd conf file bug, small cosmetic changes --- ax25ipd/ax25ipd.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'ax25ipd/ax25ipd.c') diff --git a/ax25ipd/ax25ipd.c b/ax25ipd/ax25ipd.c index 9c6dea1..b75843e 100644 --- a/ax25ipd/ax25ipd.c +++ b/ax25ipd/ax25ipd.c @@ -55,8 +55,7 @@ int main(int argc, char **argv) int option_index = 0; int c; - c = getopt_long(argc, argv, "c:hl:v", options, - &option_index); + c = getopt_long(argc, argv, "c:hl:v", options, &option_index); if (c == -1) break; @@ -65,15 +64,15 @@ int main(int argc, char **argv) break; switch (option_index) { case 0: - case 2: break; case 1: opt_loglevel = atoi(optarg); break; + case 2: + break; case 3: strncpy(opt_configfile, optarg, 1023); break; - } break; case 'c': -- cgit v1.2.3