aboutsummaryrefslogtreecommitdiffstats
path: root/dhcpcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpcd.c')
-rw-r--r--dhcpcd.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/dhcpcd.c b/dhcpcd.c
index df3e790..15c087b 100644
--- a/dhcpcd.c
+++ b/dhcpcd.c
@@ -92,6 +92,8 @@ int ifac = 0;
char **ifav = NULL;
int ifdc = 0;
char **ifdv = NULL;
+/* If set, avoid routes after a DHCP success */
+int avoid_routes = 0;
static char **margv;
static int margc;
@@ -151,7 +153,7 @@ read_pid(void)
static void
usage(void)
{
- printf("usage: "PACKAGE" [-dgknpqwxyADEGHJKLOTV] [-c script] [-f file]"
+ printf("usage: "PACKAGE" [-adgknpqwxyADEGHJKLOTV] [-c script] [-f file]"
" [-e var=val]\n"
" [-h hostname] [-i classID ] [-l leasetime]"
" [-m metric] [-o option]\n"
@@ -1791,6 +1793,9 @@ main(int argc, char **argv)
case 'U':
i = 2;
break;
+ case 'a':
+ avoid_routes = 1;
+ break;
case 'V':
print_options();
exit(EXIT_SUCCESS);