diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-06-22 21:43:29 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-06-22 21:43:29 +0400 |
commit | 80e9384ebfaca000eb7f0693a466795f51e3f29d (patch) | |
tree | bca082fbf0f2549c957e0587e4061bc5ffed035e /src/buffer.c | |
parent | ff68b52becd1c70f11be958d08a9eda64e779d16 (diff) | |
download | rspamd-80e9384ebfaca000eb7f0693a466795f51e3f29d.tar.gz rspamd-80e9384ebfaca000eb7f0693a466795f51e3f29d.zip |
* Pass env from main() arguments instead of platform specific global environ
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index be6d2acc8..6c6887557 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -44,8 +44,8 @@ sendfile_callback (rspamd_io_dispatcher_t *d) #ifdef HAVE_SENDFILE # if defined(FREEBSD) || defined(DARWIN) - #if defined(FREEBSD) off_t off = 0; + #if defined(FREEBSD) /* FreeBSD version */ if (sendfile (d->sendfile_fd, d->fd, d->offset, 0, NULL, &off, 0) != 0) { #elif defined(DARWIN) |