summaryrefslogtreecommitdiff
path: root/networking/udhcp/dumpleases.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/udhcp/dumpleases.c')
-rw-r--r--networking/udhcp/dumpleases.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/udhcp/dumpleases.c b/networking/udhcp/dumpleases.c
index 80cf5b8f5..507663fd9 100644
--- a/networking/udhcp/dumpleases.c
+++ b/networking/udhcp/dumpleases.c
@@ -23,14 +23,14 @@ int dumpleases_main(int argc, char *argv[])
23 OPT_r = 0x2, // -r 23 OPT_r = 0x2, // -r
24 OPT_f = 0x4, // -f 24 OPT_f = 0x4, // -f
25 }; 25 };
26#if ENABLE_GETOPT_LONG 26#if ENABLE_GETOPT_LONG
27 static const struct option options[] = { 27 static const struct option options[] = {
28 { "absolute", no_argument, 0, 'a' }, 28 { "absolute", no_argument, 0, 'a' },
29 { "remaining", no_argument, 0, 'r' }, 29 { "remaining", no_argument, 0, 'r' },
30 { "file", required_argument, 0, 'f' }, 30 { "file", required_argument, 0, 'f' },
31 { NULL, 0, 0, 0 } 31 { NULL, 0, 0, 0 }
32 }; 32 };
33 33
34 applet_long_options = options; 34 applet_long_options = options;
35#endif 35#endif
36 opt_complementary = "=0:?:a--r:r--a"; 36 opt_complementary = "=0:?:a--r:r--a";