diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2004-07-23 21:12:38 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2004-07-23 21:12:38 +0000 |
commit | 56bc4566bf2d8d35e06f1203f2f538f8fc71a196 (patch) | |
tree | 7fb6082d9db50d148829e2f4aa36b8e8e811bdae /www/geolizer/files/patch-aa | |
parent | A GTK+2 front-end for Aiksaurus, see more detail in (diff) |
Webalizer+GeoIP
Notes
Notes:
svn path=/head/; revision=114525
Diffstat (limited to 'www/geolizer/files/patch-aa')
-rw-r--r-- | www/geolizer/files/patch-aa | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/www/geolizer/files/patch-aa b/www/geolizer/files/patch-aa new file mode 100644 index 000000000000..37e6eb36db24 --- /dev/null +++ b/www/geolizer/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; + } + |