diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2017-07-21 09:50:55 +0200 |
commit | 72089cf6b4a77214ec4fd21d5ee5bf56958781cb (patch) | |
tree | a5cd9d8f47e909834d3dbc44f895556e68bcf18f /networking/ping.c | |
parent | 75d151e31d135ebab083307ded4e9b98970baa75 (diff) | |
download | busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.gz busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.tar.bz2 busybox-w32-72089cf6b4a77214ec4fd21d5ee5bf56958781cb.zip |
config: deindent all help texts
Those two spaces after tab have no effect, and always a nuisance when editing.
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ping.c')
-rw-r--r-- | networking/ping.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/networking/ping.c b/networking/ping.c index 31a085984..cdfb297e9 100644 --- a/networking/ping.c +++ b/networking/ping.c | |||
@@ -51,23 +51,23 @@ | |||
51 | //config: default y | 51 | //config: default y |
52 | //config: select PLATFORM_LINUX | 52 | //config: select PLATFORM_LINUX |
53 | //config: help | 53 | //config: help |
54 | //config: ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to | 54 | //config: ping uses the ICMP protocol's mandatory ECHO_REQUEST datagram to |
55 | //config: elicit an ICMP ECHO_RESPONSE from a host or gateway. | 55 | //config: elicit an ICMP ECHO_RESPONSE from a host or gateway. |
56 | //config: | 56 | //config: |
57 | //config:config PING6 | 57 | //config:config PING6 |
58 | //config: bool "ping6 (10 kb)" | 58 | //config: bool "ping6 (10 kb)" |
59 | //config: default y | 59 | //config: default y |
60 | //config: depends on FEATURE_IPV6 | 60 | //config: depends on FEATURE_IPV6 |
61 | //config: help | 61 | //config: help |
62 | //config: Alias to "ping -6". | 62 | //config: Alias to "ping -6". |
63 | //config: | 63 | //config: |
64 | //config:config FEATURE_FANCY_PING | 64 | //config:config FEATURE_FANCY_PING |
65 | //config: bool "Enable fancy ping output" | 65 | //config: bool "Enable fancy ping output" |
66 | //config: default y | 66 | //config: default y |
67 | //config: depends on PING || PING6 | 67 | //config: depends on PING || PING6 |
68 | //config: help | 68 | //config: help |
69 | //config: Make the output from the ping applet include statistics, and at the | 69 | //config: Make the output from the ping applet include statistics, and at the |
70 | //config: same time provide full support for ICMP packets. | 70 | //config: same time provide full support for ICMP packets. |
71 | 71 | ||
72 | /* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */ | 72 | /* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */ |
73 | //applet:IF_PING(APPLET(ping, BB_DIR_BIN, BB_SUID_MAYBE)) | 73 | //applet:IF_PING(APPLET(ping, BB_DIR_BIN, BB_SUID_MAYBE)) |