diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 14:59:49 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 14:59:49 +0200 |
commit | c3784aab3c7e5975fa404f9c57eef9ca346eb43f (patch) | |
tree | c981a0af63c36497ec6da595dc0abd0a7512e316 /runtime/stream.h | |
parent | e53c387e765011b71ea7de61addab4d5b1bb36d2 (diff) | |
parent | ea4625e8a43c7952af2bf936e5dd18db5e8ab9a2 (diff) | |
download | rsyslog-c3784aab3c7e5975fa404f9c57eef9ca346eb43f.tar.gz rsyslog-c3784aab3c7e5975fa404f9c57eef9ca346eb43f.tar.bz2 rsyslog-c3784aab3c7e5975fa404f9c57eef9ca346eb43f.zip |
Merge branch 'v6-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 61d5ede2..4f4a4301 100644 --- a/runtime/stream.h +++ b/runtime/stream.h @@ -158,7 +158,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); @@ -176,7 +175,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); |