diff options
author | taca <taca> | 2004-11-28 15:43:32 +0000 |
---|---|---|
committer | taca <taca> | 2004-11-28 15:43:32 +0000 |
commit | ad54f17d031e35ed4a1d3f37ca40d0bb3c810730 (patch) | |
tree | dbc830c131460adb08eef0aa0acaacc254a2959f /www/ap-ruby/patches | |
parent | 392d7329b52d72c4d0c384b943f81bd89bb1fbb0 (diff) | |
download | pkgsrc-ad54f17d031e35ed4a1d3f37ca40d0bb3c810730.tar.gz |
Update ap-ruby package to 1.2.4.
Changes are huge, please see ChangeLog file.
Diffstat (limited to 'www/ap-ruby/patches')
-rw-r--r-- | www/ap-ruby/patches/patch-ac | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/www/ap-ruby/patches/patch-ac b/www/ap-ruby/patches/patch-ac new file mode 100644 index 00000000000..9ce96379b8b --- /dev/null +++ b/www/ap-ruby/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2004/11/28 15:43:32 taca Exp $ + +--- apache_request.c.orig 2004-09-24 03:43:18.000000000 +0900 ++++ apache_request.c +@@ -230,7 +230,7 @@ static unsigned int utf8_convert(char *s + x = x * 16 + str[i] - '0'; + } + else { +- str[i] = tolower( str[i] ); ++ str[i] = tolower((unsigned int)str[i] ); + x = x * 16 + str[i] - 'a' + 10; + } + } |