summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-02-13 23:18:29 +0000
committerJames Bursa <james@netsurf-browser.org>2004-02-13 23:18:29 +0000
commit60cf7f781abc1f7c9cd61c3e4e439336cc07aea8 (patch)
treec4ed9c3915b96918a7ba7f3390ea652647092898
parent765c02622b23acbfdf0ec426e1e9d5beb2158680 (diff)
downloadnetsurf-60cf7f781abc1f7c9cd61c3e4e439336cc07aea8.tar.gz
netsurf-60cf7f781abc1f7c9cd61c3e4e439336cc07aea8.tar.bz2
[project @ 2004-02-13 23:18:29 by bursa]
Fix proxy host icon. svn path=/import/netsurf/; revision=539
-rw-r--r--riscos/dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/riscos/dialog.c b/riscos/dialog.c
index 561f27d70..a5ab66311 100644
--- a/riscos/dialog.c
+++ b/riscos/dialog.c
@@ -415,7 +415,7 @@ void set_proxy_choices(void)
set_icon_state(dialog_config_prox, ICON_CONFIG_PROX_HTTP,
option_http_proxy);
set_icon_string(dialog_config_prox, ICON_CONFIG_PROX_HTTPHOST,
- option_http_proxy_host ? "" : option_http_proxy_host);
+ option_http_proxy_host ? option_http_proxy_host : "");
set_icon_string_i(dialog_config_prox, ICON_CONFIG_PROX_HTTPPORT,
option_http_proxy_port);
}