[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Errors building acl Debian packages
On Mon, Aug 27, 2001 at 05:46:56PM +0800, Federico Sevilla III wrote:
> acl.c: In function `acl_verbose_abort':
> acl.c:176: `va_list' undeclared (first use in this function)
[....]
I just sent a patch for it to Tim 5 minutes ago. Here it is again.
Index: acl/libacl/acl.c
===================================================================
RCS file: /cvs/linux-2.4-xfs/cmd/acl/libacl/acl.c,v
retrieving revision 1.15
diff -u -u -r1.15 acl.c
--- acl/libacl/acl.c 2001/08/24 05:51:02 1.15
+++ acl/libacl/acl.c 2001/08/27 09:51:47
@@ -45,6 +45,7 @@
#include <ctype.h>
#include <stdio.h>
#include <string.h>
+#include <stdarg.h>
#include <acl/libacl.h>
-Andi