diff options
author | des <des@FreeBSD.org> | 2006-09-30 13:40:35 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2006-09-30 13:40:35 +0000 |
commit | ac038c107033606ce8be6bba914ee80ead0ecd4c (patch) | |
tree | 47f215537f9d117aecbd250ab583336682a1f461 /crypto | |
parent | 0f481d7c8cdb72113a68881105fc71aa3b8ef0e1 (diff) | |
download | FreeBSD-src-ac038c107033606ce8be6bba914ee80ead0ecd4c.zip FreeBSD-src-ac038c107033606ce8be6bba914ee80ead0ecd4c.tar.gz |
#include <errno.h>; this has the unfortunate side effect of taking the file
off the vendor branch.
MFC after: 1 week
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssh/audit-bsm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/openssh/audit-bsm.c b/crypto/openssh/audit-bsm.c index d5cf302..16a223f 100644 --- a/crypto/openssh/audit-bsm.c +++ b/crypto/openssh/audit-bsm.c @@ -35,10 +35,12 @@ /* #pragma ident "@(#)bsmaudit.c 1.1 01/09/17 SMI" */ #include "includes.h" +__RCSID("$FreeBSD$"); #if defined(USE_BSM_AUDIT) #include <sys/types.h> +#include <errno.h> #include <stdarg.h> #include <unistd.h> |