diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-05-04 10:43:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-05-04 10:43:29 +0000 |
commit | 6bbd0d7b69ea9e27b1020833227aca196e14a75d (patch) | |
tree | 1b0446019be3f096545bb6cba9d718ea34e6d981 /source3 | |
parent | beee1b280f3a0f2884b78d9afa7ad1506e43e997 (diff) | |
download | samba-6bbd0d7b69ea9e27b1020833227aca196e14a75d.tar.gz samba-6bbd0d7b69ea9e27b1020833227aca196e14a75d.tar.xz samba-6bbd0d7b69ea9e27b1020833227aca196e14a75d.zip |
use the new issafe() macro instead of isalnum() and strchr()
(This used to be commit 79c65e66f8034d21b6c90fcdbd76601657f3c447)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/ipc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/smbd/ipc.c b/source3/smbd/ipc.c index 8852e57e8b6..34210f2db70 100644 --- a/source3/smbd/ipc.c +++ b/source3/smbd/ipc.c @@ -1551,8 +1551,7 @@ static BOOL api_PrintJobInfo(int cnum,int uid,char *param,char *data, int l = 0; while (l<64 && *s) { - if (isalnum(*s) || strchr("-._",*s)) - name[l++] = *s; + if (issafe(*s)) name[l++] = *s; s++; } name[l] = 0; |