aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-01-26 07:02:56 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-01-26 07:02:56 +0000
commitbc5262d3dd98881ae6dd7c9cf11d638a01977971 (patch)
treef01871182f933ec9d4b4d7e2d5f0cace0afddb0c
parenta1042e94f176d50a94e95108f6b6391663f578ea (diff)
downloadbusybox-w32-bc5262d3dd98881ae6dd7c9cf11d638a01977971.tar.gz
busybox-w32-bc5262d3dd98881ae6dd7c9cf11d638a01977971.tar.bz2
busybox-w32-bc5262d3dd98881ae6dd7c9cf11d638a01977971.zip
fix option -F mishandling
-rw-r--r--networking/hostname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/hostname.c b/networking/hostname.c
index 7116a14df..45aaaa465 100644
--- a/networking/hostname.c
+++ b/networking/hostname.c
@@ -48,7 +48,7 @@ int hostname_main(int argc, char **argv)
48 OPT_f = 0x2, 48 OPT_f = 0x2,
49 OPT_i = 0x4, 49 OPT_i = 0x4,
50 OPT_s = 0x8, 50 OPT_s = 0x8,
51 OPT_F = 0x8, 51 OPT_F = 0x10,
52 OPT_dfis = 0xf, 52 OPT_dfis = 0xf,
53 }; 53 };
54 54