summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2017-04-03 13:25:58 -0400
committerRay Strode <rstrode@redhat.com>2017-04-03 13:38:25 -0400
commit60447f2016cd873b0a62a5885687d7b3a8538d11 (patch)
tree34cd1c858082a852b2881387836473a8bfe92a32
parent49dacac7728061636a04e3757670c874965d35be (diff)
downloadgdm-60447f2016cd873b0a62a5885687d7b3a8538d11.tar.gz
local-display-factory: add missing comma to fix user switching
commit 4b47633b36a22195e7976a8e597862eff695ca86 refactored some code and inadvertently dropped an important comma, which broke user switching. This commit reintroduces the comma. https://bugzilla.gnome.org/show_bug.cgi?id=780879
-rw-r--r--daemon/gdm-local-display-factory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gdm-local-display-factory.c b/daemon/gdm-local-display-factory.c
index 70987c71..7a4643d0 100644
--- a/daemon/gdm-local-display-factory.c
+++ b/daemon/gdm-local-display-factory.c
@@ -219,7 +219,7 @@ gdm_local_display_factory_create_transient_display (GdmLocalDisplayFactory *fact
#endif
g_object_set (display,
- "seat-id", "seat0"
+ "seat-id", "seat0",
"allow-timed-login", FALSE,
NULL);