diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-29 12:02:57 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-04-29 12:02:57 +0000 |
commit | 1fd3b38fd19057e7b048e08d6157ece06874feb1 (patch) | |
tree | e0730c5ad066166e9d642be9a7247bcba0d75cc6 /networking/ifplugd.c | |
parent | 052ad9a56883a56742cec1afc6c1c8dfff222495 (diff) | |
download | busybox-w32-1fd3b38fd19057e7b048e08d6157ece06874feb1.tar.gz busybox-w32-1fd3b38fd19057e7b048e08d6157ece06874feb1.tar.bz2 busybox-w32-1fd3b38fd19057e7b048e08d6157ece06874feb1.zip |
*: bb_error_msg's messages should not be capitalized
Diffstat (limited to 'networking/ifplugd.c')
-rw-r--r-- | networking/ifplugd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/ifplugd.c b/networking/ifplugd.c index 3315e9a4d..c9f603f2c 100644 --- a/networking/ifplugd.c +++ b/networking/ifplugd.c | |||
@@ -258,7 +258,7 @@ static void up_iface(void) | |||
258 | if (network_ioctl(SIOCGIFADDR, &ifrequest) < 0) { | 258 | if (network_ioctl(SIOCGIFADDR, &ifrequest) < 0) { |
259 | bb_error_msg("can't get interface address"); | 259 | bb_error_msg("can't get interface address"); |
260 | } else if (ifrequest.ifr_addr.sa_family != AF_INET) { | 260 | } else if (ifrequest.ifr_addr.sa_family != AF_INET) { |
261 | bb_perror_msg("The interface is not IP-based"); | 261 | bb_perror_msg("the interface is not IP-based"); |
262 | } else { | 262 | } else { |
263 | ((struct sockaddr_in*)(&ifrequest.ifr_addr))->sin_addr.s_addr = INADDR_ANY; | 263 | ((struct sockaddr_in*)(&ifrequest.ifr_addr))->sin_addr.s_addr = INADDR_ANY; |
264 | if (network_ioctl(SIOCSIFADDR, &ifrequest) < 0) | 264 | if (network_ioctl(SIOCSIFADDR, &ifrequest) < 0) |
@@ -299,7 +299,7 @@ static void maybe_up_new_iface(void) | |||
299 | (uint8_t)(ifrequest.ifr_hwaddr.sa_data[5])); | 299 | (uint8_t)(ifrequest.ifr_hwaddr.sa_data[5])); |
300 | } | 300 | } |
301 | 301 | ||
302 | bb_error_msg("Using interface %s%s with driver<%s> (version: %s)", | 302 | bb_error_msg("using interface %s%s with driver<%s> (version: %s)", |
303 | G.iface, buf, driver_info.driver, driver_info.version); | 303 | G.iface, buf, driver_info.driver, driver_info.version); |
304 | } | 304 | } |
305 | #endif | 305 | #endif |