summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakan Olsson <ho@cvs.openbsd.org>2001-11-21 10:01:44 +0000
committerHakan Olsson <ho@cvs.openbsd.org>2001-11-21 10:01:44 +0000
commit90c450b95d2a85cd4bb076d6a30b935f72565eeb (patch)
treeaa1424b7fbd55a1bfb795ebf8dbf1651beb7ae09
parent0c38f31c18929889a54d03f31c309c2e07231dd9 (diff)
%qd -> %llu in a couple of other places
-rw-r--r--sbin/isakmpd/sa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/sa.c b/sbin/isakmpd/sa.c
index 829a8e2690f..8bb60c82b71 100644
--- a/sbin/isakmpd/sa.c
+++ b/sbin/isakmpd/sa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sa.c,v 1.50 2001/11/21 09:59:26 ho Exp $ */
+/* $OpenBSD: sa.c,v 1.51 2001/11/21 10:01:43 ho Exp $ */
/* $EOM: sa.c,v 1.112 2000/12/12 00:22:52 niklas Exp $ */
/*
@@ -795,7 +795,7 @@ sa_setup_expirations (struct sa *sa)
/* XXX This should probably be configuration controlled somehow. */
seconds = sa->seconds * (850 + sysdep_random () % 100) / 1000;
LOG_DBG ((LOG_TIMER, 95,
- "sa_setup_expirations: SA %p soft timeout in %qd seconds",
+ "sa_setup_expirations: SA %p soft timeout in %llu seconds",
sa, seconds));
expiration.tv_sec += seconds;
sa->soft_death
@@ -813,7 +813,7 @@ sa_setup_expirations (struct sa *sa)
{
gettimeofday (&expiration, 0);
LOG_DBG ((LOG_TIMER, 95,
- "sa_setup_expirations: SA %p hard timeout in %qd seconds",
+ "sa_setup_expirations: SA %p hard timeout in %llu seconds",
sa, sa->seconds));
expiration.tv_sec += sa->seconds;
sa->death