summaryrefslogtreecommitdiff
path: root/runtime/stream.h
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2013-09-03 22:42:46 +0200
committerMichael Biebl <biebl@debian.org>2013-09-03 22:42:46 +0200
commit0c656246c6818b9fd0426411ed1cf926fbbc907d (patch)
treeca5db297c70a912d88b42df3c56a53c304aef5a3 /runtime/stream.h
parenta400789c367fd3cd8d0f9588ca2af72dcac47c9c (diff)
downloadrsyslog-0c656246c6818b9fd0426411ed1cf926fbbc907d.tar.gz
Imported Upstream version 7.4.4upstream/7.4.4
Diffstat (limited to 'runtime/stream.h')
-rw-r--r--runtime/stream.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/stream.h b/runtime/stream.h
index 61d5ede..4f4a430 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);