diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2002-09-11 09:50:45 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2002-09-11 09:50:45 +0000 |
commit | e61e8d34c013f7d9405d5bf2fdd76d2d750f7db8 (patch) | |
tree | 29e85398fc18e15f3bec403793d062b5dcde3995 /sbin/isakmpd/prf.h | |
parent | 3077f36a703beaa821b0880e5d2c796015b4ec88 (diff) |
signed vs unsigned, some void * arithmetic, from -pedantic. niklas@ ok.
Diffstat (limited to 'sbin/isakmpd/prf.h')
-rw-r--r-- | sbin/isakmpd/prf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/isakmpd/prf.h b/sbin/isakmpd/prf.h index 7f8c50212eb..b19c40b41e4 100644 --- a/sbin/isakmpd/prf.h +++ b/sbin/isakmpd/prf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: prf.h,v 1.6 2002/09/06 21:36:52 deraadt Exp $ */ +/* $OpenBSD: prf.h,v 1.7 2002/09/11 09:50:44 ho Exp $ */ /* $EOM: prf.h,v 1.1 1998/07/11 20:06:22 provos Exp $ */ /* @@ -57,7 +57,7 @@ struct prf_hash_ctx { void *ctx, *ctx2; /* Contexts we need for later */ }; -struct prf *prf_alloc (enum prfs, int, char *, int); +struct prf *prf_alloc (enum prfs, int, unsigned char *, int); void prf_free (struct prf *); #endif /* _PRF_H_ */ |