diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-07-04 07:39:01 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-07-04 07:39:01 +0000 |
commit | 57e7df8ae58020ab653307c1fdfbadd44983e900 (patch) | |
tree | 6de85f9cb899929a0b9187e397c3b99735056347 /source/include/charset.h | |
parent | c41fc06376d1a2b83690612304e85010b5e5f3cf (diff) | |
download | samba-57e7df8ae58020ab653307c1fdfbadd44983e900.tar.gz |
missed a couple of strchr calls
Diffstat (limited to 'source/include/charset.h')
-rw-r--r-- | source/include/charset.h | 2 |
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. */ |