summaryrefslogtreecommitdiffstats
path: root/ax25ipd/ax25ipd.c
diff options
context:
space:
mode:
authorTerry Dawson VK2KTJ <terry@animats.net>2001-09-22 12:39:16 +0000
committerTerry Dawson VK2KTJ <terry@animats.net>2001-09-22 12:39:16 +0000
commit6364520eb4c795e85f7893ba02de860d132c1d2c (patch)
tree1cab5b3607be7d6f056dcb22a4bf0093f7e0a959 /ax25ipd/ax25ipd.c
parentd15d2ecfe78c5c8698b487e9bbc919fb1ea54598 (diff)
Fixed ax25ipd conf file bug, small cosmetic changes
Diffstat (limited to 'ax25ipd/ax25ipd.c')
-rw-r--r--ax25ipd/ax25ipd.c7
1 files changed, 3 insertions, 4 deletions
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':