[libvirt] [PATCH v2 03/14] rpc: Use the enum value instead of a numerical value

Marc Hartmayer mhartmay at linux.vnet.ibm.com
Thu Dec 21 14:28:58 UTC 2017


Signed-off-by: Marc Hartmayer <mhartmay at linux.vnet.ibm.com>
Reviewed-by: Boris Fiuczynski <fiuczy at linux.vnet.ibm.com>
Reviewed-by: Bjoern Walk <bwalk at linux.vnet.ibm.com>
Reviewed-by: Stefan Zimmermann <stzi at linux.vnet.ibm.com>
Reviewed-by: John Ferlan <jferlan at redhat.com>
---
 daemon/remote.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/daemon/remote.c b/daemon/remote.c
index 8e99a4d86fd6..1df02c1f5042 100644
--- a/daemon/remote.c
+++ b/daemon/remote.c
@@ -3268,7 +3268,7 @@ remoteDispatchAuthList(virNetServerPtr server,
                             (long long) callerPid, (int) callerUid) < 0)
                 goto cleanup;
             VIR_INFO("Bypass polkit auth for privileged client %s", ident);
-            virNetServerClientSetAuth(client, 0);
+            virNetServerClientSetAuth(client, VIR_NET_SERVER_SERVICE_AUTH_NONE);
             virNetServerTrackCompletedAuth(server);
             auth = VIR_NET_SERVER_SERVICE_AUTH_NONE;
             VIR_FREE(ident);
@@ -3414,7 +3414,7 @@ remoteSASLFinish(virNetServerPtr server,
     if (!(clnt_identity = virNetServerClientGetIdentity(client)))
         goto error;
 
-    virNetServerClientSetAuth(client, 0);
+    virNetServerClientSetAuth(client, VIR_NET_SERVER_SERVICE_AUTH_NONE);
     virNetServerTrackCompletedAuth(server);
     virNetServerClientSetSASLSession(client, priv->sasl);
     virIdentitySetSASLUserName(clnt_identity, identity);
@@ -3738,7 +3738,7 @@ remoteDispatchAuthPolkit(virNetServerPtr server,
              action, (long long) callerPid, callerUid);
     ret->complete = 1;
 
-    virNetServerClientSetAuth(client, 0);
+    virNetServerClientSetAuth(client, VIR_NET_SERVER_SERVICE_AUTH_NONE);
     virNetServerTrackCompletedAuth(server);
     virMutexUnlock(&priv->lock);
 
-- 
2.13.4




More information about the libvir-list mailing list