From: ewt Date: Wed, 25 Sep 1996 19:17:03 +0000 (+0000) Subject: changed index() calls to strchr() X-Git-Tag: rpm-4.4-release~4679 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9aea8c24422bc7eb9001c7f3eda8162d25cc2ec;p=platform%2Fupstream%2Frpm.git changed index() calls to strchr() CVS patchset: 1056 CVS date: 1996/09/25 19:17:03 --- diff --git a/build/build.c b/build/build.c index 611d5c1..9daca7a 100644 --- a/build/build.c +++ b/build/build.c @@ -480,7 +480,7 @@ static int doPatchMacro(Spec spec, StringBuf sb, char *line) opt_b = NULL; patch_index = 0; - if (! index(" \t\n", line[6])) { + if (! strchr(" \t\n", line[6])) { /* %patchN */ sprintf(buf, "%%patch -P %s", line + 6); } else { @@ -502,7 +502,7 @@ static int doPatchMacro(Spec spec, StringBuf sb, char *line) } } else if (!strncmp(s, "-p", 2)) { /* unfortunately, we must support -pX */ - if (! index(" \t\n", s[2])) { + if (! strchr(" \t\n", s[2])) { s = s + 2; } else { s = strtok(NULL, " \t\n");