From b9e89c918f13374772a72cefbe0cda6bb6bc88e4 Mon Sep 17 00:00:00 2001 From: Beniamino Galvani Date: Wed, 17 Aug 2016 10:51:31 +0200 Subject: [PATCH] core: fix builds without polkit support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the following build error: nm-auth-utils.c: In function ‘nm_auth_chain_add_call’: nm-auth-utils.c:402:46: error: ‘DBUS_GERROR’ undeclared (first use in this function) call->chain->error = g_error_new_literal (DBUS_GERROR, Fixes: 1cf35cb26b6cc04f8b2c51c3cde4bc08ef311062 --- src/nm-auth-utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nm-auth-utils.c b/src/nm-auth-utils.c index e1761cab7..a6bc506cf 100644 --- a/src/nm-auth-utils.c +++ b/src/nm-auth-utils.c @@ -399,8 +399,8 @@ nm_auth_chain_add_call (NMAuthChain *self, call); #else if (!call->chain->error) { - call->chain->error = g_error_new_literal (DBUS_GERROR, - DBUS_GERROR_FAILED, + call->chain->error = g_error_new_literal (NM_MANAGER_ERROR, + NM_MANAGER_ERROR_FAILED, "Polkit support is disabled at compile time"); } call->call_idle_id = g_idle_add ((GSourceFunc) auth_call_complete, call);