From 527e824293ee934ca5da0ef5424efe5ab7757248 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 4 Jul 2001 07:36:09 +0000 Subject: strchr and strrchr are macros when compiling with optimisation in gcc, so we can't redefine them. damn. (This used to be commit c41fc06376d1a2b83690612304e85010b5e5f3cf) --- source3/passdb/passdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/passdb/passdb.c') diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index 580cae0240..3bb49091e6 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -318,8 +318,8 @@ BOOL pdb_gethexpwd(char *p, unsigned char *pwd) hinybble = toupper(p[i]); lonybble = toupper(p[i + 1]); - p1 = strchr(hexchars, hinybble); - p2 = strchr(hexchars, lonybble); + p1 = strchr_m(hexchars, hinybble); + p2 = strchr_m(hexchars, lonybble); if (!p1 || !p2) { -- cgit