From 8e362a8955c8720c0e9dc789c494385d60366439 Mon Sep 17 00:00:00 2001 From: Peter Krempa Date: Tue, 29 Oct 2013 17:01:22 +0100 Subject: [PATCH] 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. --- src/security/security_apparmor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/security/security_apparmor.c b/src/security/security_apparmor.c index 776a470b93..a9f04d2519 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, };