]> xenbits.xensource.com Git - libvirt.git/commitdiff
apparmor: Fix typo in function name in driver struct initialization
authorPeter Krempa <pkrempa@redhat.com>
Tue, 29 Oct 2013 16:01:22 +0000 (17:01 +0100)
committerPeter Krempa <pkrempa@redhat.com>
Tue, 29 Oct 2013 16:01:22 +0000 (17:01 +0100)
Commit 64a68a4a introduced a typo in the initialization of the apparmor
driver structure breaking the build with apparmor enabled.

src/security/security_apparmor.c

index 776a470b9304fb2479bb61a9db6cf2eddea492da..a9f04d2519e393cf32882e27c234385c1ccb9b11 100644 (file)
@@ -979,5 +979,5 @@ virSecurityDriver virAppArmorSecurityDriver = {
 
     .domainGetSecurityMountOptions      = AppArmorGetMountOptions,
 
-    .getBaseLabel                       = AppArmoryGetBaseLabel,
+    .getBaseLabel                       = AppArmorGetBaseLabel,
 };