version 1.1.2.1, 2005/06/08 21:50:17
|
version 1.1.2.2, 2005/11/26 23:54:51
|
Line 1
|
Line 1
|
/* auditlog.c - log modifications for audit/history purposes */ |
/* auditlog.c - log modifications for audit/history purposes */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/auditlog.c,v 1.1 2005/06/07 01:03:18 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/auditlog.c,v 1.1.2.1 2005/06/08 21:50:17 kurt Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 2005 The OpenLDAP Foundation. |
* Copyright 2005 The OpenLDAP Foundation. |
Line 215 auditlog_config(
|
Line 215 auditlog_config(
|
return SLAP_CONF_UNKNOWN; |
return SLAP_CONF_UNKNOWN; |
} |
} |
|
|
int auditlog_init() { |
int auditlog_initialize() { |
|
|
auditlog.on_bi.bi_type = "auditlog"; |
auditlog.on_bi.bi_type = "auditlog"; |
auditlog.on_bi.bi_db_init = auditlog_db_init; |
auditlog.on_bi.bi_db_init = auditlog_db_init; |
Line 228 int auditlog_init() {
|
Line 228 int auditlog_init() {
|
} |
} |
|
|
#if SLAPD_OVER_AUDITLOG == SLAPD_MOD_DYNAMIC && defined(PIC) |
#if SLAPD_OVER_AUDITLOG == SLAPD_MOD_DYNAMIC && defined(PIC) |
int init_module( int argc, char *argv[]) { |
int |
return auditlog_init(); |
init_module( int argc, char *argv[] ) |
|
{ |
|
return auditlog_initialize(); |
} |
} |
#endif |
#endif |
|
|