diff options
author | Darren Tucker <dtucker@zip.com.au> | 2011-01-17 21:15:27 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2011-01-17 21:15:27 +1100 |
commit | ea52a829699e981a58a69a77342e7ca3715a5f5b (patch) | |
tree | 425c4f3bbd3c691479e707431e0caf8458573b97 /defines.h | |
parent | 263d43d2a58f0fc4cf211808410560c8c3e451d2 (diff) | |
download | openssh-git-ea52a829699e981a58a69a77342e7ca3715a5f5b.tar.gz |
- (dtucker) [LICENCE Makefile.in audit-bsm.c audit-linux.c audit.c audit.h
configure.ac defines.h loginrec.c] Bug #1402: add linux audit subsystem
support, based on patches from Tomas Mraz and jchadima at redhat.
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -25,7 +25,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.163 2010/11/23 23:50:05 djm Exp $ */ +/* $Id: defines.h,v 1.164 2011/01/17 10:15:31 dtucker Exp $ */ /* Constants */ @@ -607,6 +607,11 @@ struct winsize { # define CUSTOM_SSH_AUDIT_EVENTS #endif +#ifdef USE_LINUX_AUDIT +# define SSH_AUDIT_EVENTS +# define CUSTOM_SSH_AUDIT_EVENTS +#endif + #if !defined(HAVE___func__) && defined(HAVE___FUNCTION__) # define __func__ __FUNCTION__ #elif !defined(HAVE___func__) |