From: Michael Orlitzky Date: Wed, 15 Aug 2012 17:02:58 +0000 (-0400) Subject: Fix an error string. X-Git-Tag: v0.0.1~4 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=a95072ea297e696f410c2f3a08586acb025677d7 Fix an error string. --- 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; }