summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2015-10-14 14:32:03 -0400
committerRay Strode <rstrode@redhat.com>2015-10-14 14:33:29 -0400
commitc9eec29ea4228de8f90f94e9a2124a6cbc1ebf00 (patch)
treec5a80701d74370f04096cc7cceb955318cc50658
parentb0001177c828db2331c03c74a97e87780ba37a8e (diff)
downloadgnome-session-c9eec29ea4228de8f90f94e9a2124a6cbc1ebf00.tar.gz
main: fix typos I introduced
I reworked some of Giovanni's code and introduced a few typos in commit 6b8d94ae13b2bec1db1bcff4ab4cc67bf63fda9f https://bugzilla.gnome.org/show_bug.cgi?id=756324
-rw-r--r--gnome-session/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnome-session/main.c b/gnome-session/main.c
index 074f53e1..4bc8cd05 100644
--- a/gnome-session/main.c
+++ b/gnome-session/main.c
@@ -243,7 +243,7 @@ initialize_gio (void)
char *use_vfs = NULL;
disable_fuse = g_strdup (g_getenv ("GVFS_DISABLE_FUSE"));
- use_vfs = g_strdup (g_getenv ("GVFS_USE_VFS"));
+ use_vfs = g_strdup (g_getenv ("GIO_USE_VFS"));
g_setenv ("GVFS_DISABLE_FUSE", "1", TRUE);
g_setenv ("GIO_USE_VFS", "local", TRUE);
@@ -257,7 +257,7 @@ initialize_gio (void)
}
if (disable_fuse) {
- g_setenv ("GIO_DISABLE_FUSE", use_vfs, TRUE);
+ g_setenv ("GVFS_DISABLE_FUSE", use_vfs, TRUE);
g_free (disable_fuse);
} else {
g_unsetenv ("GVFS_DISABLE_FUSE");