Merge branch 'wip/smcv/gdbus-silence-cross-ns' into 'main'

GDBus: Don't log a message for G_DBUS_CONNECTION_FLAGS_CROSS_NAMESPACE

See merge request GNOME/glib!4278
This commit is contained in:
Philip Withnall 2024-09-18 20:57:55 +00:00
commit 5948a76f43

View File

@ -382,13 +382,12 @@ mechanism_client_initiate (GDBusAuthMechanism *mechanism,
* no way to express an empty authorization identity this way.
* Instead, we'll reply to the server's first (empty) challenge
* with an empty authorization identity in our first response. */
g_debug ("Using cross-namespace EXTERNAL authentication (this will deadlock if server is GDBus < 2.73.3)");
}
else
{
/* Send the Unix uid or Windows SID as an initial response.
* This is the only thing that is interoperable with GDBus 2.73.3
* servers. */
* This is the only thing that is interoperable with GDBus < 2.73.3
* servers (RHEL 9, Debian 11, Ubuntu 22.04, SUSE 15.5). */
#if defined(G_OS_UNIX)
GCredentials *credentials;