summaryrefslogtreecommitdiff
path: root/source3/nsswitch/winbind_nss.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-07-18 21:50:20 +0000
committerAndrew Tridgell <tridge@samba.org>2001-07-18 21:50:20 +0000
commite8c2eeb0d88795f7357a2646d98557cf445546a3 (patch)
treebbf30be511a97c27af4c86584bc9f1fd6cf847f7 /source3/nsswitch/winbind_nss.c
parent45635a4a799f9f6efbcb8d021bec60a2eb479808 (diff)
downloadsamba-e8c2eeb0d88795f7357a2646d98557cf445546a3.tar.gz
samba-e8c2eeb0d88795f7357a2646d98557cf445546a3.tar.bz2
samba-e8c2eeb0d88795f7357a2646d98557cf445546a3.zip
the nss and pam modules in winbind don't have strchr_m() yet, so use
strchr() for the moment (This used to be commit c2c1f2027e6e623bba59610e3aa41618773e6361)
Diffstat (limited to 'source3/nsswitch/winbind_nss.c')
-rw-r--r--source3/nsswitch/winbind_nss.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/nsswitch/winbind_nss.c b/source3/nsswitch/winbind_nss.c
index cbbc30b75c..a2816bfdd3 100644
--- a/source3/nsswitch/winbind_nss.c
+++ b/source3/nsswitch/winbind_nss.c
@@ -87,13 +87,13 @@ BOOL next_token(char **ptr,char *buff,char *sep, size_t bufsize)
if (!sep) sep = " \t\n\r";
/* find the first non sep char */
- while (*s && strchr_m(sep,*s)) s++;
+ while (*s && strchr(sep,*s)) s++;
/* nothing left? */
if (! *s) return(False);
/* copy over the token */
- for (quoted = False; len < bufsize && *s && (quoted || !strchr_m(sep,*s)); s++) {
+ for (quoted = False; len < bufsize && *s && (quoted || !strchr(sep,*s)); s++) {
if (*s == '\"') {
quoted = !quoted;
} else {