From 14885e3eee9f3b7b6611e50ef92a87a7e36f469a Mon Sep 17 00:00:00 2001 From: Scott Balneaves Date: Mon, 8 Apr 2013 15:44:59 -0500 Subject: Fix crashing on start with proxy set, properly set all proxy env vars --- src/terminal-screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/terminal-screen.c') 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; -- cgit v1.2.1