diff options
author | corvid <corvid@lavabit.com> | 2009-09-03 18:37:06 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-09-03 18:37:06 +0000 |
commit | 6d9ff8f4465218ee55ee25c1ae37868a8304b6eb (patch) | |
tree | d117b93aef6a01498cd98b2b79b61c31921f4a4e /src/prefs.c | |
parent | 1428b404564a2d36e7726849981929d3f28fe0fb (diff) |
By default, do not use proxy for localhost
Diffstat (limited to 'src/prefs.c')
-rw-r--r-- | src/prefs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs.c b/src/prefs.c index 4b8421cd..798729f4 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -53,7 +53,7 @@ void a_Prefs_init(void) prefs.load_stylesheets=TRUE; prefs.middle_click_drags_page = TRUE; prefs.middle_click_opens_new_tab = TRUE; - prefs.no_proxy = NULL; + prefs.no_proxy = dStrdup(PREFS_NO_PROXY); prefs.panel_size = P_medium; prefs.parse_embedded_css=TRUE; prefs.save_dir = dStrdup(PREFS_SAVE_DIR); |