aboutsummaryrefslogtreecommitdiff
path: root/www/webalizer/files/patch-aa
blob: 37e6eb36db2454eec090d22a9a96118fc69aca9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
    }