diff options
Diffstat (limited to 'hostname.c')
-rw-r--r-- | hostname.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/hostname.c b/hostname.c index 8cc334da0..ef921024b 100644 --- a/hostname.c +++ b/hostname.c | |||
@@ -1,6 +1,6 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | /* | 2 | /* |
3 | * $Id: hostname.c,v 1.7 2000/02/08 19:58:47 erik Exp $ | 3 | * $Id: hostname.c,v 1.8 2000/05/12 19:41:47 erik Exp $ |
4 | * Mini hostname implementation for busybox | 4 | * Mini hostname implementation for busybox |
5 | * | 5 | * |
6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> | 6 | * Copyright (C) 1999 by Randolph Chung <tausq@debian.org> |
@@ -31,15 +31,18 @@ | |||
31 | #include <stdio.h> | 31 | #include <stdio.h> |
32 | 32 | ||
33 | static const char *hostname_usage = | 33 | static const char *hostname_usage = |
34 | "hostname [OPTION] {hostname | -F file}\n\n" | 34 | "hostname [OPTION] {hostname | -F file}\n" |
35 | "Get or set the hostname or DNS domain name. If a hostname is given\n" | 35 | #ifndef BB_FEATURE_TRIVIAL_HELP |
36 | "\nGet or set the hostname or DNS domain name. If a hostname is given\n" | ||
36 | "(or a file with the -F parameter), the host name will be set.\n\n" | 37 | "(or a file with the -F parameter), the host name will be set.\n\n" |
37 | "Options:\n" | 38 | "Options:\n" |
38 | "\t-s\t\tShort\n" | 39 | "\t-s\t\tShort\n" |
39 | 40 | ||
40 | "\t-i\t\tAddresses for the hostname\n" | 41 | "\t-i\t\tAddresses for the hostname\n" |
41 | "\t-d\t\tDNS domain name\n" | 42 | "\t-d\t\tDNS domain name\n" |
42 | "\t-F FILE\t\tUse the contents of FILE to specify the hostname\n"; | 43 | "\t-F FILE\t\tUse the contents of FILE to specify the hostname\n" |
44 | #endif | ||
45 | ; | ||
43 | 46 | ||
44 | 47 | ||
45 | void do_sethostname(char *s, int isfile) | 48 | void do_sethostname(char *s, int isfile) |