diff options
author | dougb <dougb@FreeBSD.org> | 2009-05-31 05:42:58 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2009-05-31 05:42:58 +0000 |
commit | 1e9abbf9ca25c8e19cbc0405a365df5433813cd6 (patch) | |
tree | 21a5399cf53ce4f1ffedece1c1700a317f190f2e /contrib/bind9/lib/bind/bsd/ftruncate.c | |
parent | 9babfe9f9b2fa8b533dad4a39b00918df9809aa7 (diff) | |
parent | fd553238c94c3abfef11bfdfc5cb05b32cbe5f76 (diff) | |
download | FreeBSD-src-1e9abbf9ca25c8e19cbc0405a365df5433813cd6.zip FreeBSD-src-1e9abbf9ca25c8e19cbc0405a365df5433813cd6.tar.gz |
Update BIND to version 9.6.1rc1. This version has better performance and
lots of new features compared to 9.4.x, including:
Full NSEC3 support
Automatic zone re-signing
New update-policy methods tcp-self and 6to4-self
DHCID support.
More detailed statistics counters including those supported in BIND 8.
Faster ACL processing.
Efficient LRU cache-cleaning mechanism.
NSID support.
Diffstat (limited to 'contrib/bind9/lib/bind/bsd/ftruncate.c')
-rw-r--r-- | contrib/bind9/lib/bind/bsd/ftruncate.c | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/contrib/bind9/lib/bind/bsd/ftruncate.c b/contrib/bind9/lib/bind/bsd/ftruncate.c deleted file mode 100644 index b222c8b..0000000 --- a/contrib/bind9/lib/bind/bsd/ftruncate.c +++ /dev/null @@ -1,64 +0,0 @@ -#ifndef LINT -static const char rcsid[] = "$Id: ftruncate.c,v 1.1.352.3 2005/06/22 22:05:45 marka Exp $"; -#endif - -/*! \file - * \brief - * ftruncate - set file size, BSD Style - * - * shortens or enlarges the file as neeeded - * uses some undocumented locking call. It is known to work on SCO unix, - * other vendors should try. - * The #error directive prevents unsupported OSes - */ - -#include "port_before.h" - -#if defined(M_UNIX) -#define OWN_FTRUNCATE -#include <stdio.h> -#ifdef _XOPEN_SOURCE -#undef _XOPEN_SOURCE -#endif -#ifdef _POSIX_SOURCE -#undef _POSIX_SOURCE -#endif - -#include <fcntl.h> - -#include "port_after.h" - -int -__ftruncate(int fd, long wantsize) { - long cursize; - - /* determine current file size */ - if ((cursize = lseek(fd, 0L, 2)) == -1) - return (-1); - - /* maybe lengthen... */ - if (cursize < wantsize) { - if (lseek(fd, wantsize - 1, 0) == -1 || - write(fd, "", 1) == -1) { - return (-1); - } - return (0); - } - - /* maybe shorten... */ - if (wantsize < cursize) { - struct flock fl; - - fl.l_whence = 0; - fl.l_len = 0; - fl.l_start = wantsize; - fl.l_type = F_WRLCK; - return (fcntl(fd, F_FREESP, &fl)); - } - return (0); -} -#endif - -#ifndef OWN_FTRUNCATE -int __bindcompat_ftruncate; -#endif |