diff options
author | Hakan Olsson <ho@cvs.openbsd.org> | 2003-11-06 16:12:09 +0000 |
---|---|---|
committer | Hakan Olsson <ho@cvs.openbsd.org> | 2003-11-06 16:12:09 +0000 |
commit | 794afd1bf2b19666384a8bcd3ee110d63f62f167 (patch) | |
tree | a1a498cdc9e2c556b3b5429bfe2bc35fc15dda26 /sbin/isakmpd/key.c | |
parent | 19ab6f203585d2248f3829418d72906d79d633f4 (diff) |
Style nits.
Diffstat (limited to 'sbin/isakmpd/key.c')
-rw-r--r-- | sbin/isakmpd/key.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sbin/isakmpd/key.c b/sbin/isakmpd/key.c index ca0f7a003c0..932b3d347e6 100644 --- a/sbin/isakmpd/key.c +++ b/sbin/isakmpd/key.c @@ -1,4 +1,4 @@ -/* $OpenBSD: key.c,v 1.12 2002/09/11 09:50:44 ho Exp $ */ +/* $OpenBSD: key.c,v 1.13 2003/11/06 16:12:07 ho Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) * @@ -68,8 +68,8 @@ key_serialize (int type, int private, void *key, u_int8_t **data, size_t *datale *data = p = malloc (*datalen); if (!p) { - log_error("key_serialize: malloc (%lu) failed", - (unsigned long)*datalen); + log_error ("key_serialize: malloc (%lu) failed", + (unsigned long)*datalen); return; } *datalen = i2d_RSAPublicKey ((RSA *)key, &p); @@ -80,8 +80,8 @@ key_serialize (int type, int private, void *key, u_int8_t **data, size_t *datale *data = p = malloc (*datalen); if (!p) { - log_error("key_serialize: malloc (%lu) failed", - (unsigned long)*datalen); + log_error ("key_serialize: malloc (%lu) failed", + (unsigned long)*datalen); return; } *datalen = i2d_RSAPrivateKey ((RSA *)key, &p); |