aboutsummaryrefslogtreecommitdiff
path: root/libbb/strrstr.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-18 20:01:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-18 20:01:12 +0000
commit1363f0df150e26c9457a8ccbe35580843bae3319 (patch)
treef851a241bc9fd2500844f73be27ae77de59fc281 /libbb/strrstr.c
parentd5736c560703725d13c88234f03e82693212c265 (diff)
downloadbusybox-1363f0df150e26c9457a8ccbe35580843bae3319.tar.gz
strrchr: actually, last one was finding "" in "any" at pos 0,
should find at pos LAST...
Diffstat (limited to 'libbb/strrstr.c')
-rw-r--r--libbb/strrstr.c2
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)