summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-04-18 19:01:51 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-04-18 19:01:51 (GMT)
commit6f7ac0e29ceacd0fce5b06ff83d80c43812c3b3d (patch)
treea0446b76d3da765b1827a28cce09e73b8fb15b62 /library
parent56739b80365465180878af37675a2e8524cc1976 (diff)
downloadtcl-6f7ac0e29ceacd0fce5b06ff83d80c43812c3b3d.zip
tcl-6f7ac0e29ceacd0fce5b06ff83d80c43812c3b3d.tar.gz
tcl-6f7ac0e29ceacd0fce5b06ff83d80c43812c3b3d.tar.bz2
Fix [bc432269b74e9b246bf01f354714fed47cb227ed|bc432269]: http fails in a safe interpreter
Diffstat (limited to 'library')
-rw-r--r--library/http/http.tcl17
1 files changed, 13 insertions, 4 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl
index ccd4cd1..03751a3 100644
--- a/library/http/http.tcl
+++ b/library/http/http.tcl
@@ -28,10 +28,19 @@ namespace eval http {
# We need a useragent string of this style or various servers will refuse to
# send us compressed content even when we ask for it. This follows the
# de-facto layout of user-agent strings in current browsers.
- set http(-useragent) "Mozilla/5.0\
- ([string totitle $::tcl_platform(platform)]; U;\
- $::tcl_platform(os) $::tcl_platform(osVersion))\
- http/[package provide http] Tcl/[package provide Tcl]"
+ # Safe interpreters do not have ::tcl_platform(os) or
+ # ::tcl_platform(osVersion).
+ if {[interp issafe]} {
+ set http(-useragent) "Mozilla/5.0\
+ (Windows; U;\
+ Windows NT 10.0)\
+ http/[package provide http] Tcl/[package provide Tcl]"
+ } else {
+ set http(-useragent) "Mozilla/5.0\
+ ([string totitle $::tcl_platform(platform)]; U;\
+ $::tcl_platform(os) $::tcl_platform(osVersion))\
+ http/[package provide http] Tcl/[package provide Tcl]"
+ }
}
proc init {} {