File offsets should be off_t, not int32, for large file support. Per OpenSuSE patch: https://build.opensuse.org/package/view_file/security/tripwire/tripwire-2.4.1.2-src.off_t.patch?expand-1

This commit is contained in:
Brian Cox 2016-03-29 14:08:34 -07:00
parent 5490bd3a2f
commit a8d0a2ff79
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ class cFile
{
public:
#if IS_UNIX
typedef int32 File_t;
typedef off_t File_t;
#else //WIN32
typedef int64 File_t;