diff options
Diffstat (limited to 'sbin/isakmpd/prf.c')
-rw-r--r-- | sbin/isakmpd/prf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/isakmpd/prf.c b/sbin/isakmpd/prf.c index 2586cc3087a..da1768e4731 100644 --- a/sbin/isakmpd/prf.c +++ b/sbin/isakmpd/prf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: prf.c,v 1.8 2002/06/01 07:44:22 deraadt Exp $ */ +/* $OpenBSD: prf.c,v 1.9 2002/06/06 02:15:27 ho Exp $ */ /* $EOM: prf.c,v 1.7 1999/05/02 12:50:29 niklas Exp $ */ /* @@ -110,7 +110,8 @@ prf_alloc (enum prfs type, int subtype, char *shared, int sharedsize) prfctx = malloc (sizeof *prfctx); if (!prfctx) { - log_error ("prf_alloc: malloc (%lu) failed", (unsigned long)sizeof *prfctx); + log_error ("prf_alloc: malloc (%lu) failed", + (unsigned long)sizeof *prfctx); goto cleanprf; } prf->prfctx = prfctx; |