From 43ca0c542e01c94aef180525b784aecdee44fd11 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Wed, 2 Jul 2014 13:42:54 +0200 Subject: [PATCH] conf: audit: rng: Reorder new and old RNG device definitions The audit functions usually take the old definition before the new one in the argument list. Unify RNG device to use the same order. --- src/conf/domain_audit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conf/domain_audit.c b/src/conf/domain_audit.c index 52c643d1b5..91095b1140 100644 --- a/src/conf/domain_audit.c +++ b/src/conf/domain_audit.c @@ -138,7 +138,7 @@ virDomainAuditDisk(virDomainObjPtr vm, static void virDomainAuditRNG(virDomainObjPtr vm, - virDomainRNGDefPtr newDef, virDomainRNGDefPtr oldDef, + virDomainRNGDefPtr oldDef, virDomainRNGDefPtr newDef, const char *reason, bool success) { char uuidstr[VIR_UUID_STRING_BUFLEN]; @@ -827,7 +827,7 @@ virDomainAuditStart(virDomainObjPtr vm, const char *reason, bool success) } if (vm->def->rng) - virDomainAuditRNG(vm, vm->def->rng, NULL, "start", true); + virDomainAuditRNG(vm, NULL, vm->def->rng, "start", true); if (vm->def->tpm) virDomainAuditTPM(vm, vm->def->tpm, "start", true);