From: Eric Blake Date: Thu, 26 Sep 2013 21:40:34 +0000 (-0600) Subject: maint: fix comment typos X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4357746768e97a84f6872804600bf5cf9cfcc22d;p=thirdparty%2Flibvirt.git maint: fix comment typos * src/lxc/lxc_controller.c (virLXCControllerSetupDisk): Fix typo. * src/lxc/lxc_driver.c (lxcDomainAttachDeviceDiskLive): Likewise. Signed-off-by: Eric Blake (cherry picked from commit 8de47efd3fdb27d99bc457cc4163d7b5f8595268) --- diff --git a/src/lxc/lxc_controller.c b/src/lxc/lxc_controller.c index a91be045a1..c66a51374a 100644 --- a/src/lxc/lxc_controller.c +++ b/src/lxc/lxc_controller.c @@ -1696,7 +1696,7 @@ static int virLXCControllerSetupDisk(virLXCControllerPtr ctrl, goto cleanup; /* Labelling normally operates on src, but we need - * to actally label the dst here, so hack the config */ + * to actually label the dst here, so hack the config */ def->src = dst; if (virSecurityManagerSetImageLabel(securityDriver, ctrl->def, def) < 0) goto cleanup; diff --git a/src/lxc/lxc_driver.c b/src/lxc/lxc_driver.c index a6efaa43f3..48456ad0b9 100644 --- a/src/lxc/lxc_driver.c +++ b/src/lxc/lxc_driver.c @@ -3145,7 +3145,7 @@ lxcDomainAttachDeviceDiskLive(virLXCDriverPtr driver, created = true; /* Labelling normally operates on src, but we need - * to actally label the dst here, so hack the config */ + * to actually label the dst here, so hack the config */ def->src = dst; if (virSecurityManagerSetImageLabel(driver->securityManager, vm->def, def) < 0)