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

Marc Hartmayer mhartmay at linux.vnet.ibm.com
Tue Dec 12 11:36:25 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>
---
 daemon/remote.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/daemon/remote.c b/daemon/remote.c
index c2111ae378a2..f769bb762d5b 100644
--- a/daemon/remote.c
+++ b/daemon/remote.c
@@ -3263,7 +3263,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);
@@ -3409,7 +3409,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);
@@ -3733,7 +3733,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