summaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-04-01 09:39:03 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-04-01 09:39:03 +0000
commitba2fb719b92034e745b59d2c3b5b05209ce45352 (patch)
tree811452c3e50482b9f4063de1121dd630c44dbf0e /networking
parent2856dab4770e521a87c18b04ae8ebc209a9b95f9 (diff)
downloadbusybox-w32-ba2fb719b92034e745b59d2c3b5b05209ce45352.tar.gz
busybox-w32-ba2fb719b92034e745b59d2c3b5b05209ce45352.tar.bz2
busybox-w32-ba2fb719b92034e745b59d2c3b5b05209ce45352.zip
Copyright, help text, whitespace cleanups
Diffstat (limited to 'networking')
-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";