diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-28 22:57:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-28 22:57:53 +0000 |
commit | f63706bd1cf47e17c8e7342d056f58913a793f93 (patch) | |
tree | 4dbf5cb91c5f7517539c49c4bf5aded927bfac6d /sys/netinet/ip_ipsp.c | |
parent | 034ca25af4edc1172a6b59c0632fbc78c5e9e940 (diff) |
log() needs a \n
Diffstat (limited to 'sys/netinet/ip_ipsp.c')
-rw-r--r-- | sys/netinet/ip_ipsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netinet/ip_ipsp.c b/sys/netinet/ip_ipsp.c index af76cd76140..806fffdd506 100644 --- a/sys/netinet/ip_ipsp.c +++ b/sys/netinet/ip_ipsp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ipsp.c,v 1.19 1997/09/23 21:42:21 angelos Exp $ */ +/* $OpenBSD: ip_ipsp.c,v 1.20 1997/09/28 22:57:50 deraadt Exp $ */ /* * The author of this code is John Ioannidis, ji@tla.org, @@ -307,7 +307,7 @@ put_expiration(struct expiration *exp) { #ifdef ENCDEBUG if (encdebug) - log(LOG_WARNING, "put_expiration(): NULL argument"); + log(LOG_WARNING, "put_expiration(): NULL argument\n"); #endif /* ENCDEBUG */ return; } @@ -510,8 +510,8 @@ tdb_init(struct tdb *tdbp, struct mbuf *m) if (xsp->xf_type == alg) return (*(xsp->xf_init))(tdbp, xsp, m); - log(LOG_ERR, "tdb_init(): no alg %d for spi %08x, addr %x, proto %d", alg, - ntohl(tdbp->tdb_spi), tdbp->tdb_dst.s_addr, tdbp->tdb_sproto); + log(LOG_ERR, "tdb_init(): no alg %d for spi %08x, addr %x, proto %d\n", + alg, ntohl(tdbp->tdb_spi), tdbp->tdb_dst.s_addr, tdbp->tdb_sproto); return EINVAL; } |