@@ -1487,10 +1487,10 @@ authentication_agent_generate_cookie (AuthenticationAgent *agent)
14871487 GString * buf = g_string_new ("" );
14881488
14891489 g_string_append (buf , agent -> cookie_prefix );
1490-
1490+
14911491 g_string_append_c (buf , '-' );
14921492 agent -> cookie_serial ++ ;
1493- g_string_append_printf (buf , "%" G_GUINT64_FORMAT ,
1493+ g_string_append_printf (buf , "%" G_GUINT64_FORMAT ,
14941494 agent -> cookie_serial );
14951495 g_string_append_c (buf , '-' );
14961496 append_rand_u128_str (buf , agent -> cookie_pool );
@@ -1684,7 +1684,7 @@ authentication_agent_new (guint64 serial,
16841684 g_rand_free (agent_private_rand );
16851685
16861686 agent -> cookie_prefix = g_string_free (cookie_prefix , FALSE);
1687-
1687+
16881688 /* And a newly seeded pool for per-session cookies */
16891689 agent -> cookie_pool = g_rand_new ();
16901690 }
@@ -1786,7 +1786,7 @@ get_authentication_session_for_uid_and_cookie (PolkitBackendInteractiveAuthority
17861786 * due to wrapping, that the cookie used is matched to the user
17871787 * who called AuthenticationAgentResponse2. See
17881788 * http://lists.freedesktop.org/archives/polkit-devel/2015-June/000425.html
1789- *
1789+ *
17901790 * Except if the legacy AuthenticationAgentResponse is invoked,
17911791 * we don't know the uid and hence use -1. Continue to support
17921792 * the old behavior for backwards compatibility, although everyone
0 commit comments