mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 06:05:27 +00:00
qemu_security: Complete renaming of virSecurityManagerSetAllLabel() argument
Just like in the previous commit, the stdin_path argument of virSecurityManagerSetAllLabel() is renamed to incomingPath. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Erik Skultety <eskultet@redhat.com>
This commit is contained in:
parent
f68a14d17f
commit
77ef118456
@ -32,7 +32,7 @@ VIR_LOG_INIT("qemu.qemu_security");
|
||||
int
|
||||
qemuSecuritySetAllLabel(virQEMUDriverPtr driver,
|
||||
virDomainObjPtr vm,
|
||||
const char *stdin_path,
|
||||
const char *incomingPath,
|
||||
bool migrated)
|
||||
{
|
||||
int ret = -1;
|
||||
@ -47,7 +47,7 @@ qemuSecuritySetAllLabel(virQEMUDriverPtr driver,
|
||||
|
||||
if (virSecurityManagerSetAllLabel(driver->securityManager,
|
||||
vm->def,
|
||||
stdin_path,
|
||||
incomingPath,
|
||||
priv->chardevStdioLogd,
|
||||
migrated) < 0)
|
||||
goto cleanup;
|
||||
|
@ -26,7 +26,7 @@
|
||||
|
||||
int qemuSecuritySetAllLabel(virQEMUDriverPtr driver,
|
||||
virDomainObjPtr vm,
|
||||
const char *stdin_path,
|
||||
const char *incomingPath,
|
||||
bool migrated);
|
||||
|
||||
void qemuSecurityRestoreAllLabel(virQEMUDriverPtr driver,
|
||||
|
Loading…
Reference in New Issue
Block a user