projects
/
tclvfs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d900c15
)
fix missing eval
author
Jeff Hobbs
<hobbs@users.sourceforge.net>
Fri, 29 Sep 2006 21:56:39 +0000
(21:56 +0000)
committer
Jeff Hobbs
<hobbs@users.sourceforge.net>
Fri, 29 Sep 2006 21:56:39 +0000
(21:56 +0000)
library/httpvfs.tcl
patch
|
blob
|
history
diff --git
a/library/httpvfs.tcl
b/library/httpvfs.tcl
index 1a89ced83e4fdad80096d4f6063827a08148eede..b9760cba897eb15bd3efb65e754a20956139b4b7 100644
(file)
--- a/
library/httpvfs.tcl
+++ b/
library/httpvfs.tcl
@@
-291,7
+291,7
@@
proc vfs::http::urlname {name} {
proc vfs::http::geturl {url args} {
# a wrapper around http::geturl that handles 404 or !ok status check
# returns error on no success, or a fully ready http token otherwise
- set token [
linsert $args 0 ::http::geturl $url
]
+ set token [
eval [linsert $args 0 ::http::geturl $url]
]
http::wait $token
if {[http::ncode $token] == 404 || [http::status $token] ne "ok"} {