diff options
author | rillig <rillig> | 2007-11-30 20:43:08 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-11-30 20:43:08 +0000 |
commit | db1df813905e1b4bc76e724c592250e41377355b (patch) | |
tree | 924f4190d4e804b8a52198e156e37d499356d5d3 | |
parent | 7f3e1f26ed57adb00e3b9bf185646de7fe92f134 (diff) | |
download | pkgsrc-db1df813905e1b4bc76e724c592250e41377355b.tar.gz |
Fixed invalid lvalue.
-rw-r--r-- | www/ap-dtcl/distinfo | 3 | ||||
-rw-r--r-- | www/ap-dtcl/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/www/ap-dtcl/distinfo b/www/ap-dtcl/distinfo index cdff1e70d1b..6554dc5ddcf 100644 --- a/www/ap-dtcl/distinfo +++ b/www/ap-dtcl/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.9 2005/02/24 14:08:27 wiz Exp $ +$NetBSD: distinfo,v 1.10 2007/11/30 20:43:08 rillig Exp $ SHA1 (mod_dtcl-0.11.6.tar.gz) = 8a48b2292bb1048b17fd268011d1a4307ef5770e RMD160 (mod_dtcl-0.11.6.tar.gz) = 9fe42c888d476029852dad2742accb7b7d654e67 Size (mod_dtcl-0.11.6.tar.gz) = 90374 bytes SHA1 (patch-aa) = 512e310549e475fbd6106eef52d2f789f4a0390b +SHA1 (patch-ab) = 6eed9b2e971501ddcd1500cab5e16fa6a7037658 diff --git a/www/ap-dtcl/patches/patch-ab b/www/ap-dtcl/patches/patch-ab new file mode 100644 index 00000000000..aac0ce509e1 --- /dev/null +++ b/www/ap-dtcl/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1 2007/11/30 20:43:09 rillig Exp $ + +--- tcl_commands.c.orig 2002-03-13 15:56:06.000000000 +0000 ++++ tcl_commands.c 2007-11-30 20:41:17.000000000 +0000 +@@ -388,7 +388,7 @@ int HGetVars(ClientData clientData, Tcl_ + env = (table_entry *) env_arr->elts; + + /* Get the user/pass info for Basic authentication */ +- (const char*)authorization = ap_table_get(globals->r->headers_in, "Authorization"); ++ authorization = (const char *)ap_table_get(globals->r->headers_in, "Authorization"); + if (authorization && !strcasecmp(ap_getword_nc(POOL, &authorization, ' '), "Basic")) + { + char *tmp; |