summaryrefslogtreecommitdiffstats
path: root/source/include/charset.h
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-07-04 07:39:01 +0000
committerAndrew Tridgell <tridge@samba.org>2001-07-04 07:39:01 +0000
commit57e7df8ae58020ab653307c1fdfbadd44983e900 (patch)
tree6de85f9cb899929a0b9187e397c3b99735056347 /source/include/charset.h
parentc41fc06376d1a2b83690612304e85010b5e5f3cf (diff)
downloadsamba-57e7df8ae58020ab653307c1fdfbadd44983e900.tar.gz
samba-57e7df8ae58020ab653307c1fdfbadd44983e900.tar.xz
samba-57e7df8ae58020ab653307c1fdfbadd44983e900.zip
missed a couple of strchr calls
Diffstat (limited to 'source/include/charset.h')
-rw-r--r--source/include/charset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/charset.h b/source/include/charset.h
index 7c6fbe5509b..117de75c009 100644
--- a/source/include/charset.h
+++ b/source/include/charset.h
@@ -63,7 +63,7 @@ extern void charset_initialise(void);
/* this is used to determine if a character is safe to use in
something that may be put on a command line */
-#define issafe(c) (isalnum((c&0xff)) || strchr("-._",c))
+#define issafe(c) (isalnum((c&0xff)) || strchr_m("-._",c))
#endif
/* Dynamic codepage files defines. */