diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-27 22:47:17 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-27 22:47:17 +0000 |
commit | c80b85803b9fbc11cbf77486b847da9f38ba3684 (patch) | |
tree | 6e992df1ed80b23b3c69a49d5fbb76292ba45fb9 /source3/rpc_parse | |
parent | e4a2e8e46f2392aab2bead21c32e101f577eb2ab (diff) | |
download | samba-c80b85803b9fbc11cbf77486b847da9f38ba3684.tar.gz samba-c80b85803b9fbc11cbf77486b847da9f38ba3684.tar.bz2 samba-c80b85803b9fbc11cbf77486b847da9f38ba3684.zip |
this one's a handle-based one (missed in the first round).
(This used to be commit 4c3556fae73c60693355f95f48ac63834ba4dd10)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_eventlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_eventlog.c b/source3/rpc_parse/parse_eventlog.c index 6cf476711d..0b49ed5da7 100644 --- a/source3/rpc_parse/parse_eventlog.c +++ b/source3/rpc_parse/parse_eventlog.c @@ -27,7 +27,7 @@ extern int DEBUGLEVEL; /******************************************************************* ********************************************************************/ -BOOL make_eventlog_q_open(EVENTLOG_Q_OPEN *q_u, char *journal, char *unk) +BOOL make_eventlog_q_open(EVENTLOG_Q_OPEN *q_u, const char *journal, char *unk) { int len_journal = journal != NULL ? strlen(journal) : 0; int len_unk = unk != NULL ? strlen(unk) : 0; |