From 1fd3b38fd19057e7b048e08d6157ece06874feb1 Mon Sep 17 00:00:00 2001
From: Denis Vlasenko <vda.linux@googlemail.com>
Date: Wed, 29 Apr 2009 12:02:57 +0000
Subject: *: bb_error_msg's messages should not be capitalized

---
 networking/ifplugd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'networking/ifplugd.c')

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)
 	if (network_ioctl(SIOCGIFADDR, &ifrequest) < 0) {
 		bb_error_msg("can't get interface address");
 	} else if (ifrequest.ifr_addr.sa_family != AF_INET) {
-		bb_perror_msg("The interface is not IP-based");
+		bb_perror_msg("the interface is not IP-based");
 	} else {
 		((struct sockaddr_in*)(&ifrequest.ifr_addr))->sin_addr.s_addr = INADDR_ANY;
 		if (network_ioctl(SIOCSIFADDR, &ifrequest) < 0)
@@ -299,7 +299,7 @@ static void maybe_up_new_iface(void)
 				(uint8_t)(ifrequest.ifr_hwaddr.sa_data[5]));
 		}
 
-		bb_error_msg("Using interface %s%s with driver<%s> (version: %s)",
+		bb_error_msg("using interface %s%s with driver<%s> (version: %s)",
 			G.iface, buf, driver_info.driver, driver_info.version);
 	}
 #endif
-- 
cgit v1.2.3-55-g6feb