From: Mattias Amnefelt Date: Tue, 10 Dec 2002 19:09:53 +0000 (+0000) Subject: use-afs-strchr-instead-of-strchr-20021210 X-Git-Tag: openafs-devel-1_3_50~467 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=889da5053cb1b89ce25caec1bf9fa5a7dbb7830b;p=packages%2Fo%2Fopenafs.git use-afs-strchr-instead-of-strchr-20021210 make dux happy --- diff --git a/src/afs/UKERNEL/afs_usrops.c b/src/afs/UKERNEL/afs_usrops.c index 86503492e..210badacf 100644 --- a/src/afs/UKERNEL/afs_usrops.c +++ b/src/afs/UKERNEL/afs_usrops.c @@ -2172,7 +2172,7 @@ int uafs_LookupName( /* * terminate the current component and skip over slashes */ - nextPathP = strchr(pathP, '/'); + nextPathP = afs_strchr(pathP, '/'); if (nextPathP != NULL) { while (*nextPathP == '/') { *(nextPathP++) = '\0';