summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2016-03-10 07:45:28 +0100
committerLukas Slebodnik <lslebodn@redhat.com>2016-03-12 21:19:06 +0100
commit9f18131a2ace84c393982734c93ce22eda558510 (patch)
treea37ae6762deac9d82d755b89d668bc730444d4fc
parentcd8da80527d062ee78bd5f326f0fbb29deff3ee5 (diff)
downloadsssd-9f18131a2ace84c393982734c93ce22eda558510.tar.gz
sssd-9f18131a2ace84c393982734c93ce22eda558510.tar.xz
sssd-9f18131a2ace84c393982734c93ce22eda558510.zip
libipa_hbac: Fix typo in constant name
On platforms without the format attribute, libhbac could not be compiled. Reviewed-by: Lukáš Slebodník <lslebodn@redhat.com>
-rw-r--r--src/providers/ipa/ipa_hbac.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/providers/ipa/ipa_hbac.h b/src/providers/ipa/ipa_hbac.h
index ee5f1919b..22dd8ffc4 100644
--- a/src/providers/ipa/ipa_hbac.h
+++ b/src/providers/ipa/ipa_hbac.h
@@ -53,7 +53,7 @@ enum hbac_debug_level {
#ifdef HAVE_FUNCTION_ATTRIBUTE_FORMAT
#define HBAC_ATTRIBUTE_PRINTF(a1, a2) __attribute__((format(printf, a1, a2)))
#else
-#define HABC_ATTRIBUTE_PRINTF(a1, a2)
+#define HBAC_ATTRIBUTE_PRINTF(a1, a2)
#endif
/**