diff options
author | Scott Balneaves <[email protected]> | 2013-04-08 15:44:59 -0500 |
---|---|---|
committer | Scott Balneaves <[email protected]> | 2013-04-08 15:44:59 -0500 |
commit | 14885e3eee9f3b7b6611e50ef92a87a7e36f469a (patch) | |
tree | 8906a9494999c3444083995c044c237881bdde10 /src/terminal-screen.c | |
parent | ec2d4f706027c19d858572d1305733219fab280f (diff) | |
download | mate-terminal-14885e3eee9f3b7b6611e50ef92a87a7e36f469a.tar.bz2 mate-terminal-14885e3eee9f3b7b6611e50ef92a87a7e36f469a.tar.xz |
Fix crashing on start with proxy set, properly set all proxy env vars
Diffstat (limited to 'src/terminal-screen.c')
-rw-r--r-- | src/terminal-screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal-screen.c b/src/terminal-screen.c index 049add3..d64f876 100644 --- a/src/terminal-screen.c +++ b/src/terminal-screen.c @@ -1406,7 +1406,7 @@ get_child_environment (TerminalScreen *screen, list_schemas = g_settings_list_schemas(); schema_exists = FALSE; for (i = 0; list_schemas[i] != NULL; i++) { - if (g_strcmp0 (list_schemas[i], "org.gnome.system.proxy") == 0) + if (g_strcmp0 (list_schemas[i], CONF_PROXY_SCHEMA) == 0) { schema_exists = TRUE; break; |