diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2002-05-28 11:23:21 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2002-05-28 11:23:21 +0000 |
commit | b7b42c02814ce96ad9e72e1041e4e9a4ad08ec7b (patch) | |
tree | 4f48558cab7ae8e5c15532c55d25aed190c387a0 /sbin/isakmpd/util.h | |
parent | a110bd034b66c81e3f4781d6d286ba5c4b488f41 (diff) |
off_t to size_t change for printf format and malloc. Pointed out by <greg@nest.cx>
Diffstat (limited to 'sbin/isakmpd/util.h')
-rw-r--r-- | sbin/isakmpd/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/util.h b/sbin/isakmpd/util.h index ca1bb27322b..33fa924fa89 100644 --- a/sbin/isakmpd/util.h +++ b/sbin/isakmpd/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.13 2001/10/26 12:03:07 ho Exp $ */ +/* $OpenBSD: util.h,v 1.14 2002/05/28 11:23:20 ho Exp $ */ /* $EOM: util.h,v 1.10 2000/10/24 13:33:39 niklas Exp $ */ /* @@ -49,7 +49,7 @@ extern unsigned long seed; struct message; struct sockaddr; -extern int check_file_secrecy (char *, off_t *); +extern int check_file_secrecy (char *, size_t *); extern u_int16_t decode_16 (u_int8_t *); extern u_int32_t decode_32 (u_int8_t *); extern u_int64_t decode_64 (u_int8_t *); |