From: Peter Krempa Date: Wed, 2 Jul 2014 11:42:54 +0000 (+0200) Subject: conf: audit: rng: Reorder new and old RNG device definitions X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=43ca0c542e01c94aef180525b784aecdee44fd11;p=people%2Fliuw%2Flibxenctrl-split%2Flibvirt.git 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. --- diff --git a/src/conf/domain_audit.c b/src/conf/domain_audit.c index 52c643d1b..91095b114 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);