aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-01-18 13:58:01 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-01-18 13:58:01 +0100
commitb9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704 (patch)
tree7c989f0cd07bf8e7923a3d7d831e72048807b63b /networking
parent3b5acaa4323bd165077e60098af94ad9750d62fd (diff)
downloadbusybox-w32-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.tar.gz
busybox-w32-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.tar.bz2
busybox-w32-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.zip
mass removal of underscores from _BB_DIR_foo and _BB_SUID_foo
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r--networking/nbd-client.c2
-rw-r--r--networking/ping.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/networking/nbd-client.c b/networking/nbd-client.c
index 8b856eda7..cadda5261 100644
--- a/networking/nbd-client.c
+++ b/networking/nbd-client.c
@@ -7,7 +7,7 @@
7#include <netinet/tcp.h> 7#include <netinet/tcp.h>
8#include <linux/fs.h> 8#include <linux/fs.h>
9 9
10//applet:IF_NBDCLIENT(APPLET_ODDNAME(nbd-client, nbdclient, _BB_DIR_USR_SBIN, _BB_SUID_DROP, nbdclient)) 10//applet:IF_NBDCLIENT(APPLET_ODDNAME(nbd-client, nbdclient, BB_DIR_USR_SBIN, BB_SUID_DROP, nbdclient))
11 11
12//kbuild:lib-$(CONFIG_NBDCLIENT) += nbd-client.o 12//kbuild:lib-$(CONFIG_NBDCLIENT) += nbd-client.o
13 13
diff --git a/networking/ping.c b/networking/ping.c
index 366a98668..11ce24eb5 100644
--- a/networking/ping.c
+++ b/networking/ping.c
@@ -52,9 +52,9 @@
52//config: Make the output from the ping applet include statistics, and at the 52//config: Make the output from the ping applet include statistics, and at the
53//config: same time provide full support for ICMP packets. 53//config: same time provide full support for ICMP packets.
54 54
55/* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore _BB_SUID_MAYBE: */ 55/* Needs socket(AF_INET, SOCK_RAW, IPPROTO_ICMP), therefore BB_SUID_MAYBE: */
56//applet:IF_PING(APPLET(ping, _BB_DIR_BIN, _BB_SUID_MAYBE)) 56//applet:IF_PING(APPLET(ping, BB_DIR_BIN, BB_SUID_MAYBE))
57//applet:IF_PING6(APPLET(ping6, _BB_DIR_BIN, _BB_SUID_MAYBE)) 57//applet:IF_PING6(APPLET(ping6, BB_DIR_BIN, BB_SUID_MAYBE))
58 58
59//kbuild:lib-$(CONFIG_PING) += ping.o 59//kbuild:lib-$(CONFIG_PING) += ping.o
60//kbuild:lib-$(CONFIG_PING6) += ping.o 60//kbuild:lib-$(CONFIG_PING6) += ping.o