From f54a329a28050846c0475b45f8bf131f66eab996 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 8 Aug 2005 20:42:33 +0000 Subject: * nscd/mem.c (mempool_alloc): Use posix_fallocate instead of ftruncate. * nscd/connections.c (nscd_init): Likewise. --- nscd/connections.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nscd/connections.c') diff --git a/nscd/connections.c b/nscd/connections.c index 808ea33adb..7ead3fd5e7 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -638,7 +638,7 @@ cannot create read-only descriptor for \"%s\"; no mmap"), if ((TEMP_FAILURE_RETRY (write (fd, &head, sizeof (head))) != sizeof (head)) - || ftruncate (fd, total) != 0 + || posix_fallocate (fd, 0, total) != 0 || (mem = mmap (NULL, total, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0)) == MAP_FAILED) { -- cgit 1.4.1