From: Peter Krempa Date: Tue, 29 Oct 2013 16:01:22 +0000 (+0100) Subject: apparmor: Fix typo in function name in driver struct initialization X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8e362a8955c8720c0e9dc789c494385d60366439;p=people%2Fdariof%2Flibvirt.git apparmor: Fix typo in function name in driver struct initialization Commit 64a68a4a introduced a typo in the initialization of the apparmor driver structure breaking the build with apparmor enabled. --- diff --git a/src/security/security_apparmor.c b/src/security/security_apparmor.c index 776a470b9..a9f04d251 100644 --- a/src/security/security_apparmor.c +++ b/src/security/security_apparmor.c @@ -979,5 +979,5 @@ virSecurityDriver virAppArmorSecurityDriver = { .domainGetSecurityMountOptions = AppArmorGetMountOptions, - .getBaseLabel = AppArmoryGetBaseLabel, + .getBaseLabel = AppArmorGetBaseLabel, };