From 79c65e66f8034d21b6c90fcdbd76601657f3c447 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 4 May 1996 10:43:29 +0000 Subject: use the new issafe() macro instead of isalnum() and strchr() --- source/smbd/ipc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/smbd/ipc.c b/source/smbd/ipc.c index 8852e57e8b6..34210f2db70 100644 --- a/source/smbd/ipc.c +++ b/source/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; -- cgit