diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-05 18:05:09 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-05 18:05:09 +0000 |
commit | 5af906e7c834301a0f237b50e1a1474ce0cf6da0 (patch) | |
tree | 8a5a2783a458269715a05dc48236cae8b1cb1ee0 /networking/libiproute/utils.c | |
parent | 402151671b58b264f9c023e8e29615b3dc3c9acc (diff) | |
download | busybox-w32-5af906e7c834301a0f237b50e1a1474ce0cf6da0.tar.gz busybox-w32-5af906e7c834301a0f237b50e1a1474ce0cf6da0.tar.bz2 busybox-w32-5af906e7c834301a0f237b50e1a1474ce0cf6da0.zip |
rename: compare_string_array -> index_in_str_array
introduce index_in_substr_array and use it in
iproute2
Diffstat (limited to 'networking/libiproute/utils.c')
-rw-r--r-- | networking/libiproute/utils.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/networking/libiproute/utils.c b/networking/libiproute/utils.c index 552f4bf77..f92179c40 100644 --- a/networking/libiproute/utils.c +++ b/networking/libiproute/utils.c | |||
@@ -263,10 +263,7 @@ int matches(char *cmd, char *pattern) | |||
263 | { | 263 | { |
264 | int len = strlen(cmd); | 264 | int len = strlen(cmd); |
265 | 265 | ||
266 | if (len > strlen(pattern)) { | 266 | return strncmp(pattern, cmd, len); |
267 | return -1; | ||
268 | } | ||
269 | return memcmp(pattern, cmd, len); | ||
270 | } | 267 | } |
271 | 268 | ||
272 | int inet_addr_match(inet_prefix * a, inet_prefix * b, int bits) | 269 | int inet_addr_match(inet_prefix * a, inet_prefix * b, int bits) |