From a95072ea297e696f410c2f3a08586acb025677d7 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 15 Aug 2012 13:02:58 -0400 Subject: [PATCH] Fix an error string. --- src/aclq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aclq.c b/src/aclq.c index 9217bc2..65e1ca3 100644 --- a/src/aclq.c +++ b/src/aclq.c @@ -355,7 +355,7 @@ int wipe_acls(const char* path) { /* Catches the first acl_get_entry as well as the ones at the end of the loop. */ if (ge_result == -1) { - perror("reapply_default_acl_ng (acl_get_entry)"); + perror("wipe_acls (acl_get_entry)"); result = -1; goto cleanup; } -- 2.43.2