The naming of the variables was tied to what they are used for not what
the alias represents. Since we'll need to use some of the aliases for
another type of secrets fix the name so that it makes sense.

Signed-off-by: Peter Krempa <pkre...@redhat.com>
---
 src/qemu/qemu_domain.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/qemu/qemu_domain.c b/src/qemu/qemu_domain.c
index 52d2dddede..70b1b5c4f2 100644
--- a/src/qemu/qemu_domain.c
+++ b/src/qemu/qemu_domain.c
@@ -1746,8 +1746,8 @@ qemuDomainDiskHasEncryptionSecret(virStorageSourcePtr src)
 static int
 qemuDomainSecretStorageSourcePrepare(qemuDomainObjPrivatePtr priv,
                                      virStorageSourcePtr src,
-                                     const char *authalias,
-                                     const char *encalias)
+                                     const char *aliasprotocol,
+                                     const char *aliasformat)
 {
     qemuDomainStorageSourcePrivatePtr srcPriv;
     bool iscsiHasPS = virQEMUCapsGet(priv->qemuCaps, 
QEMU_CAPS_ISCSI_PASSWORD_SECRET);
@@ -1774,7 +1774,7 @@ 
qemuDomainSecretStorageSourcePrepare(qemuDomainObjPrivatePtr priv,
                                                             
src->auth->username,
                                                             
&src->auth->seclookupdef);
         } else {
-            srcPriv->secinfo = qemuDomainSecretAESSetupFromSecret(priv, 
authalias,
+            srcPriv->secinfo = qemuDomainSecretAESSetupFromSecret(priv, 
aliasprotocol,
                                                                   usageType,
                                                                   
src->auth->username,
                                                                   
&src->auth->seclookupdef,
@@ -1786,7 +1786,7 @@ 
qemuDomainSecretStorageSourcePrepare(qemuDomainObjPrivatePtr priv,
     }

     if (hasEnc) {
-        if (!(srcPriv->encinfo = qemuDomainSecretAESSetupFromSecret(priv, 
encalias,
+        if (!(srcPriv->encinfo = qemuDomainSecretAESSetupFromSecret(priv, 
aliasformat,
                                                                     
VIR_SECRET_USAGE_TYPE_VOLUME,
                                                                     NULL,
                                                                     
&src->encryption->secrets[0]->seclookupdef,
-- 
2.24.1

Reply via email to