From 89f0b3486dfea233e6000f9af95b39a3ea7fd96e Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 18 Nov 2006 22:04:09 +0000 Subject: rodata cleanup. "unable to" == "cannot". -300 bytes --- networking/nameif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'networking/nameif.c') diff --git a/networking/nameif.c b/networking/nameif.c index 385e7fb71..52aad2873 100644 --- a/networking/nameif.c +++ b/networking/nameif.c @@ -78,7 +78,7 @@ int nameif_main(int argc, char **argv) while (*a) { if (strlen(*a) > IF_NAMESIZE) - bb_error_msg_and_die("interface name `%s' " + bb_error_msg_and_die("interface name '%s' " "too long", *a); ch = xzalloc(sizeof(mactable_t)); ch->ifname = xstrdup(*a++); @@ -104,7 +104,7 @@ int nameif_main(int argc, char **argv) ch = xzalloc(sizeof(mactable_t)); ch->ifname = xstrndup(line_ptr, name_length); if (name_length > IF_NAMESIZE) - bb_error_msg_and_die("interface name `%s' " + bb_error_msg_and_die("interface name '%s' " "too long", ch->ifname); line_ptr += name_length; line_ptr += strspn(line_ptr, " \t"); -- cgit v1.2.3