From d12fcc20dac8415a89898fdaa9bfabaac39e5e33 Mon Sep 17 00:00:00 2001
From: Denis Vlasenko <vda.linux@googlemail.com>
Date: Sat, 31 May 2008 07:34:14 +0000
Subject: libiproute: fix option parsing, so that "ip -o link" works again.
 closes bug 3524

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

(limited to 'libbb')

diff --git a/libbb/compare_string_array.c b/libbb/compare_string_array.c
index 151b50817..ec7f94e79 100644
--- a/libbb/compare_string_array.c
+++ b/libbb/compare_string_array.c
@@ -23,7 +23,7 @@ int index_in_strings(const char *strings, const char *key)
 {
 	int idx = 0;
 
-	while (strings[0]) {
+	while (*strings) {
 		if (strcmp(strings, key) == 0) {
 			return idx;
 		}
@@ -57,7 +57,7 @@ int index_in_substrings(const char *strings, const char *key)
 
 	if (len) {
 		int idx = 0;
-		while (strings[0]) {
+		while (*strings) {
 			if (strncmp(strings, key, len) == 0) {
 				return idx;
 			}
-- 
cgit v1.2.3-55-g6feb