diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-10-01 14:10:20 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1999-10-01 14:10:20 +0000 |
commit | b2af5c0f83f66558e87ba7dcc7ae998e2a1c3c33 (patch) | |
tree | a01dc8ffc570133176c21d934bd0989314efbc60 /sbin | |
parent | 77f7c3328bf097dd4f4dccb2bb0ac55fa00cc934 (diff) |
Merge with EOM 1.18
author: niklas
actually tv_sec is long, so use %ld
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/connection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/connection.c b/sbin/isakmpd/connection.c index 4b746bf0280..cb2150119b3 100644 --- a/sbin/isakmpd/connection.c +++ b/sbin/isakmpd/connection.c @@ -1,5 +1,5 @@ -/* $OpenBSD: connection.c,v 1.4 1999/07/13 15:46:32 niklas Exp $ */ -/* $EOM: connection.c,v 1.17 1999/07/11 13:09:54 ho Exp $ */ +/* $OpenBSD: connection.c,v 1.5 1999/10/01 14:10:19 niklas Exp $ */ +/* $EOM: connection.c,v 1.18 1999/08/31 11:08:57 niklas Exp $ */ /* * Copyright (c) 1999 Niklas Hallqvist. All rights reserved. @@ -451,7 +451,7 @@ connection_report (void) gettimeofday (&now, 0); for (conn = TAILQ_FIRST (&connections); conn; conn = TAILQ_NEXT (conn, link)) log_debug (LOG_REPORT, 0, - "connection_report: connection %s next check %d seconds", + "connection_report: connection %s next check %ld seconds", (conn->name ? conn->name : "<unnamed>"), conn->ev->expiration.tv_sec - now.tv_sec); for (pconn = TAILQ_FIRST (&connections_passive); pconn; |