diff options
author | Martijn van Duren <martijn@cvs.openbsd.org> | 2018-10-01 06:37:38 +0000 |
---|---|---|
committer | Martijn van Duren <martijn@cvs.openbsd.org> | 2018-10-01 06:37:38 +0000 |
commit | 7979d06eaa32b96f41c9703ec4e008ac347090c2 (patch) | |
tree | 34bf1270ced50fa86a548ac6909e1ec0854ce8a8 /lib/libc/string/strrchr.c | |
parent | d5ac897b9e5b161f57fe2673a36ebfc4fa073853 (diff) |
As per POSIX, when str{,r}chr is comparing it should convert c to a char.
The C implementation of str{,r}chr are not linked to the build, because
assembly implementations are used, but change to code for easier reference.
At least the i386 and amd64 are checked and seem to do the correct thing.
Found thanks to the csh any/strchr change.
minor pointers and OK millert@
Diffstat (limited to 'lib/libc/string/strrchr.c')
-rw-r--r-- | lib/libc/string/strrchr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/strrchr.c b/lib/libc/string/strrchr.c index 93755721443..848d1ad22e4 100644 --- a/lib/libc/string/strrchr.c +++ b/lib/libc/string/strrchr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: strrchr.c,v 1.3 2015/08/31 02:53:57 guenther Exp $ */ +/* $OpenBSD: strrchr.c,v 1.4 2018/10/01 06:37:37 martijn Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. * All rights reserved. @@ -38,7 +38,7 @@ strrchr(const char *p, int ch) char *save; for (save = NULL;; ++p) { - if (*p == ch) + if (*p == (char) ch) save = (char *)p; if (!*p) return(save); |