diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-18 20:01:12 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-06-18 20:01:12 +0000 |
commit | 1363f0df150e26c9457a8ccbe35580843bae3319 (patch) | |
tree | f851a241bc9fd2500844f73be27ae77de59fc281 /libbb | |
parent | d5736c560703725d13c88234f03e82693212c265 (diff) | |
download | busybox-1363f0df150e26c9457a8ccbe35580843bae3319.tar.gz |
strrchr: actually, last one was finding "" in "any" at pos 0,
should find at pos LAST...
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/strrstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/strrstr.c b/libbb/strrstr.c index 088d9f457..f61dd517f 100644 --- a/libbb/strrstr.c +++ b/libbb/strrstr.c @@ -24,7 +24,7 @@ char* strrstr(const char *haystack, const char *needle) char *r = NULL; if (!needle[0]) - return (char*)haystack; + return (char*)haystack + strlen(haystack); while (1) { char *p = strstr(haystack, needle); if (!p) |