mirror of
https://git.openafs.org/openafs.git
synced 2025-01-19 07:20:11 +00:00
audit-one-more-thing-20061013
it never ends
This commit is contained in:
parent
e3d10f048b
commit
3e10dc3a84
@ -37,6 +37,16 @@ RCSID
|
||||
#endif
|
||||
#include <afs/afsutil.h>
|
||||
|
||||
/* C99 requires va_copy. Older versions of GCC provide __va_copy. Per t
|
||||
Autoconf manual, memcpy is a generally portable fallback. */
|
||||
#ifndef va_copy
|
||||
# ifdef __va_copy
|
||||
# define va_copy(d, s) __va_copy((d), (s))
|
||||
# else
|
||||
# define va_copy(d, s) memcpy(&(d), &(s), sizeof(va_list))
|
||||
# endif
|
||||
#endif
|
||||
|
||||
char *bufferPtr;
|
||||
int bufferLen;
|
||||
int osi_audit_all = (-1); /* Not determined yet */
|
||||
|
Loading…
Reference in New Issue
Block a user