diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-14 13:47:12 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-10-14 13:47:12 +0000 |
| commit | 53085b307ff3fc460851c783024c5c7527923b54 (patch) | |
| tree | 78f974651ba5d73302a0c1a3285936ea20267e96 /www/webalizer-2/files/patch-aa | |
| parent | ff839adaabefa04d5e9e5219cd27fd55fe9e6000 (diff) | |
ctype fixes
Diffstat (limited to 'www/webalizer-2/files/patch-aa')
| -rw-r--r-- | www/webalizer-2/files/patch-aa | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/www/webalizer-2/files/patch-aa b/www/webalizer-2/files/patch-aa new file mode 100644 index 000000000000..37e6eb36db24 --- /dev/null +++ b/www/webalizer-2/files/patch-aa @@ -0,0 +1,17 @@ +--- linklist.c.bak Fri Sep 29 07:51:02 2000 ++++ linklist.c Sat Oct 14 17:22:16 2000 +@@ -197,12 +197,12 @@ + strncpy(temp_buf,str,79); + temp_buf[79]=0; + +- while (!isspace((int)*name)&&*name!=0) name++; ++ while (!isspace((unsigned char)*name)&&*name!=0) name++; + if (*name==0) name=temp_buf; + else + { + *name++=0; +- while (isspace((int)*name)&&*name!=0) name++; ++ while (isspace((unsigned char)*name)&&*name!=0) name++; + if (*name==0) name=temp_buf; + } + |
