* libmisc/copydir.c: Avoid conflict with glibc. Rename error to
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 11 Nov 2011 11:59:21 +0000 (11:59 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 11 Nov 2011 11:59:21 +0000 (11:59 +0000)
error_acl.

ChangeLog
libmisc/copydir.c

index 310763b79f6583959dda704b9ac3b767c922b310..a48197a13dab6b2e41d65d8572b3e88f40fd56b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-11-11  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * libmisc/copydir.c: Avoid conflict with glibc. Rename error to
+       error_acl.
+
 2011-11-11  Nicolas François  <nicolas.francois@centraliens.net>
 
        * man/newusers.8.xml: Document the optional file argument.
index 5c6c059492b6c6be101e307127c7bca2a9dfe230..1774aeffa4d099253bead2fd4770ddb02fa07b5a 100644 (file)
@@ -174,9 +174,9 @@ int reset_selinux_file_context (void)
 
 #if defined(WITH_ACL) || defined(WITH_ATTR)
 /*
- * error - format the error messages for the ACL and EQ libraries.
+ * error_acl - format the error messages for the ACL and EQ libraries.
  */
-static void error (struct error_context *ctx, const char *fmt, ...)
+static void error_acl (struct error_context *ctx, const char *fmt, ...)
 {
        va_list ap;
 
@@ -190,7 +190,7 @@ static void error (struct error_context *ctx, const char *fmt, ...)
 }
 
 static struct error_context ctx = {
-       error
+       error_acl
 };
 #endif                         /* WITH_ACL || WITH_ATTR */