diff options
author | taca <taca@pkgsrc.org> | 2004-11-28 15:43:32 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2004-11-28 15:43:32 +0000 |
commit | 2934216a8f14de7f891eac134fc5ebb78e0c0e72 (patch) | |
tree | dbc830c131460adb08eef0aa0acaacc254a2959f /www/ap-ruby/patches | |
parent | 5a4e71a0ce3e320fc6da80665771cd1abbe0ccca (diff) | |
download | pkgsrc-2934216a8f14de7f891eac134fc5ebb78e0c0e72.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; + } + } |