diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-16 18:34:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-16 18:34:06 +0000 |
commit | a91fce241ec0acb77eeb44fdb6a2c82f6498e116 (patch) | |
tree | dd8db9eba39277a416b3d1e4fd0bdd76e983a4fb /usr.sbin/authpf | |
parent | e77bb9ada09f611121a1f25212dba8df3db557b3 (diff) |
ftruncate() with ftello() instead of ftell(); ok millert
Diffstat (limited to 'usr.sbin/authpf')
-rw-r--r-- | usr.sbin/authpf/authpf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/authpf/authpf.c b/usr.sbin/authpf/authpf.c index 12f86c694df..79b32a26a1f 100644 --- a/usr.sbin/authpf/authpf.c +++ b/usr.sbin/authpf/authpf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authpf.c,v 1.85 2004/08/08 00:05:09 deraadt Exp $ */ +/* $OpenBSD: authpf.c,v 1.86 2004/09/16 18:34:05 deraadt Exp $ */ /* * Copyright (C) 1998 - 2002 Bob Beck (beck@openbsd.org). @@ -282,7 +282,7 @@ main(int argc, char *argv[]) rewind(pidfp); fprintf(pidfp, "%ld\n%s\n", (long)getpid(), luser); fflush(pidfp); - (void) ftruncate(fileno(pidfp), ftell(pidfp)); + (void) ftruncate(fileno(pidfp), ftello(pidfp)); if (change_filter(1, luser, ipsrc) == -1) { printf("Unable to modify filters\r\n"); |