diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-03-01 22:32:19 -0500 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2014-03-02 09:22:49 +0100 |
commit | bab337a18e6c416416d31c003b4a48d09daed082 (patch) | |
tree | 4784b47fa1a436efe4f97f73ebc9cb291e5b0181 | |
parent | 7b28be4f40138e6949428e03524f0788b356be05 (diff) |
Fix a typo
These variables are not used for anything, so it probably
doesn't make a difference, but they should be reset to FALSE
when the name is lost.
https://bugzilla.gnome.org/show_bug.cgi?id=725477
-rw-r--r-- | ui/gcr-prompter-tool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gcr-prompter-tool.c b/ui/gcr-prompter-tool.c index 0ddd4a5..4e2d043 100644 --- a/ui/gcr-prompter-tool.c +++ b/ui/gcr-prompter-tool.c @@ -123,10 +123,10 @@ on_name_lost (GDBusConnection *connection, gtk_main_quit (); } else if (g_strcmp0 (name, GCR_DBUS_PROMPTER_SYSTEM_BUS_NAME) == 0) { - acquired_system_prompter = TRUE; + acquired_system_prompter = FALSE; } else if (g_strcmp0 (name, GCR_DBUS_PROMPTER_PRIVATE_BUS_NAME) == 0) { - acquired_private_prompter = TRUE; + acquired_private_prompter = FALSE; } } |