diff options
author | Günther Deschner <gd@samba.org> | 2009-02-02 13:38:38 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-02-03 15:45:09 +0100 |
commit | b94946697dc1d2915f6330f3a02cca7d69bc7cff (patch) | |
tree | 5672fbb636cbad20a0929736a884656a4d4bce7d /source3/include | |
parent | 4976777e3b0f3d8c18182a822937f62c082027c7 (diff) | |
download | samba-b94946697dc1d2915f6330f3a02cca7d69bc7cff.tar.gz samba-b94946697dc1d2915f6330f3a02cca7d69bc7cff.tar.bz2 samba-b94946697dc1d2915f6330f3a02cca7d69bc7cff.zip |
s3-eventlog: pass down talloc context to parse_logentry().
Guenther
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6f9474e3fb..19d131cb63 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6262,7 +6262,7 @@ ELOG_TDB *elog_open_tdb( const char *logname, bool force_clear, bool read_only ) int elog_close_tdb( ELOG_TDB *etdb, bool force_close ); int write_eventlog_tdb( TDB_CONTEXT * the_tdb, Eventlog_entry * ee ); void fixup_eventlog_entry( Eventlog_entry * ee ); -bool parse_logentry( char *line, Eventlog_entry * entry, bool * eor ); +bool parse_logentry( TALLOC_CTX *mem_ctx, char *line, Eventlog_entry * entry, bool * eor ); /* The following definitions come from rpc_server/srv_eventlog_nt.c */ |