diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 14:59:09 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 14:59:09 +0200 |
commit | ea4625e8a43c7952af2bf936e5dd18db5e8ab9a2 (patch) | |
tree | 217aacd5cdb5761c627b6bf2909dca82200a64fd /runtime/stream.h | |
parent | 908586ce956e6ccb576f48cd1c46ff5655e92479 (diff) | |
parent | 5a25a441b44f2125ed709ed95e07dab9b56327d0 (diff) | |
download | rsyslog-ea4625e8a43c7952af2bf936e5dd18db5e8ab9a2.tar.gz rsyslog-ea4625e8a43c7952af2bf936e5dd18db5e8ab9a2.tar.bz2 rsyslog-ea4625e8a43c7952af2bf936e5dd18db5e8ab9a2.zip |
Merge branch 'v5-stable' into tmp
Diffstat (limited to 'runtime/stream.h')
-rw-r--r-- | runtime/stream.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/stream.h b/runtime/stream.h index a01929f2..0828f6fd 100644 --- a/runtime/stream.h +++ b/runtime/stream.h @@ -149,7 +149,6 @@ BEGINinterface(strm) /* name must also be changed in ENDinterface macro! */ rsRetVal (*Construct)(strm_t **ppThis); rsRetVal (*ConstructFinalize)(strm_t *pThis); rsRetVal (*Destruct)(strm_t **ppThis); - rsRetVal (*SetMaxFileSize)(strm_t *pThis, int64 iMaxFileSize); rsRetVal (*SetFileName)(strm_t *pThis, uchar *pszName, size_t iLenName); rsRetVal (*ReadChar)(strm_t *pThis, uchar *pC); rsRetVal (*UnreadChar)(strm_t *pThis, uchar c); @@ -167,7 +166,7 @@ BEGINinterface(strm) /* name must also be changed in ENDinterface macro! */ rsRetVal (*SetWCntr)(strm_t *pThis, number_t *pWCnt); rsRetVal (*Dup)(strm_t *pThis, strm_t **ppNew); INTERFACEpropSetMeth(strm, bDeleteOnClose, int); - INTERFACEpropSetMeth(strm, iMaxFileSize, int); + INTERFACEpropSetMeth(strm, iMaxFileSize, int64); INTERFACEpropSetMeth(strm, iMaxFiles, int); INTERFACEpropSetMeth(strm, iFileNumDigits, int); INTERFACEpropSetMeth(strm, tOperationsMode, int); |