summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2013-09-12 08:28:58 -0400
committerRay Strode <rstrode@redhat.com>2013-09-12 08:28:58 -0400
commitd0e2bcbb1a2723e83cb97f96afdbcc924b893806 (patch)
treef25f2a4f633081d0f81de28da6bf274f3af7ce2f
parente9f1197536ca2ab17ce580131caf78ec70c46d73 (diff)
downloadgdm-d0e2bcbb1a2723e83cb97f96afdbcc924b893806.tar.gz
worker: drop "maybe" from the list of choices
PAM_RADIO_TYPE is pretty ill-defined, with no way that I know of to specify what the multiple choices are. Having "maybe" in there is just weird. Drop it.
-rw-r--r--daemon/gdm-session-worker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/gdm-session-worker.c b/daemon/gdm-session-worker.c
index fb01d906..8c4dc3ab 100644
--- a/daemon/gdm-session-worker.c
+++ b/daemon/gdm-session-worker.c
@@ -781,7 +781,7 @@ gdm_session_worker_process_pam_message (GdmSessionWorker *worker,
break;
#ifdef PAM_RADIO_TYPE
case PAM_RADIO_TYPE:
- msg = g_strdup_printf ("%s (yes/no/maybe)", utf8_msg);
+ msg = g_strdup_printf ("%s (yes/no)", utf8_msg);
res = gdm_session_worker_ask_question (worker, msg, &user_answer);
g_free (msg);
break;