diff options
author | Ed Schouten <ed@FreeBSD.org> | 2012-01-03 18:51:58 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2012-01-03 18:51:58 +0000 |
commit | b3608ae18f1e5598bed81d0a10dd585a5080c40d (patch) | |
tree | b751618c7a82d9c00cab91ea9f611585dbf14d84 /usr.bin/finger/finger.c | |
parent | 69ee3e2f52eb8cba6e103cd1de3f91a7ffe1ddc7 (diff) |
Replace index() and rindex() calls with strchr() and strrchr().
The index() and rindex() functions were marked LEGACY in the 2001
revision of POSIX and were subsequently removed from the 2008 revision.
The strchr() and strrchr() functions are part of the C standard.
This makes the source code a lot more consistent, as most of these C
files also call into other str*() routines. In fact, about a dozen
already perform strchr() calls.
Notes
Notes:
svn path=/head/; revision=229403
Diffstat (limited to 'usr.bin/finger/finger.c')
-rw-r--r-- | usr.bin/finger/finger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/finger/finger.c b/usr.bin/finger/finger.c index 2704a96bbc26..7519f15e2c94 100644 --- a/usr.bin/finger/finger.c +++ b/usr.bin/finger/finger.c @@ -287,7 +287,7 @@ userlist(int argc, char **argv) /* Pull out all network requests. */ for (ap = p = argv, np = nargv; *p; ++p) - if (index(*p, '@')) + if (strchr(*p, '@')) *np++ = *p; else *ap++ = *p; |