diff options
author | mi <mi@FreeBSD.org> | 2001-07-18 03:10:50 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2001-07-18 03:10:50 +0800 |
commit | 05b842d1f29fc8980d3854b91ac621606a56c2cf (patch) | |
tree | fa704c99e6a074f2b3ffdacc56f1bf6aeb73465e /www/mod_dtcl | |
parent | ca48fd8b39e252f218f1e82fbe26f24d554c2907 (diff) | |
download | freebsd-ports-gnome-05b842d1f29fc8980d3854b91ac621606a56c2cf.tar.gz freebsd-ports-gnome-05b842d1f29fc8980d3854b91ac621606a56c2cf.tar.zst freebsd-ports-gnome-05b842d1f29fc8980d3854b91ac621606a56c2cf.zip |
The author's logic was backwards -- and no VARS array was created
by default. The author fixed this in his cvs, but is not making a
new release yet...
Diffstat (limited to 'www/mod_dtcl')
-rw-r--r-- | www/mod_dtcl/files/patch-cast | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/www/mod_dtcl/files/patch-cast b/www/mod_dtcl/files/patch-cast index e00056db617d..8e9a6d16b8c8 100644 --- a/www/mod_dtcl/files/patch-cast +++ b/www/mod_dtcl/files/patch-cast @@ -1,5 +1,10 @@ --- mod_dtcl.c Tue May 1 11:56:01 2001 +++ mod_dtcl.c Fri Jun 1 20:29:10 2001 +@@ -735,3 +735,3 @@ + /* take results and create tcl variables from them */ +-#if USE_ONLY_VAR_COMMAND == 1 ++#if USE_ONLY_VAR_COMMAND == 0 + if (req->parms) @@ -792 +792,6 @@ - chan = Tcl_MakeFileChannel((ClientData *)fileno(upload->fp), TCL_READABLE); + union { |