summaryrefslogtreecommitdiffstats
path: root/ax25rtd/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'ax25rtd/config.c')
-rw-r--r--ax25rtd/config.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ax25rtd/config.c b/ax25rtd/config.c
index 7fa250d..1fa94a3 100644
--- a/ax25rtd/config.c
+++ b/ax25rtd/config.c
@@ -1,4 +1,4 @@
-/* $Id: config.c,v 1.3 2005/10/27 13:25:28 dl9sau Exp $
+/* $Id: config.c,v 1.4 2006/10/05 11:50:39 dl9sau Exp $
*
* Copyright (c) 1996 Jörg Reuter (jreuter@poboxes.com)
*
@@ -480,7 +480,11 @@ void load_config()
ip_maxroutes = atoi(arg);
else
missing_arg(cmd);
-
+ } else if (!strcmp(cmd, "iproute2-table")) {
+ if (arg)
+ strcpy(iproute2_table, arg);
+ else
+ missing_arg(cmd);
} else
fprintf(stderr, "invalid command %s\n", cmd);
}