From a09ff24607c51897103c755b2cdc971a1f4c3adb Mon Sep 17 00:00:00 2001 From: Enji Cooper Date: Wed, 8 Apr 2020 21:21:19 -0700 Subject: [PATCH] Fix typo: HAVEL_LEVEL2 This change initializes the `entry_id` to `ACL_FIRST_ENTRY` when `ACL` objects are created. Signed-off-by: Enji Cooper --- acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acl.c b/acl.c index a774627..986978d 100644 --- a/acl.c +++ b/acl.c @@ -120,7 +120,7 @@ static PyObject* ACL_new(PyTypeObject* type, PyObject* args, Py_DECREF(newacl); return NULL; } -#ifdef HAVEL_LEVEL2 +#ifdef HAVE_LEVEL2 acl->entry_id = ACL_FIRST_ENTRY; #endif -- 2.39.2