Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / security / isakmpd / patches / patch-ag
blob312afbed64020e221cd0adb1c29ecdb58079ae52
1 $NetBSD$
3 --- sa.c.orig   Wed Nov 13 04:31:38 2002
4 +++ sa.c        Sat Feb  8 12:04:21 2003
5 @@ -440,6 +440,6 @@
6    LOG_DBG ((cls, level, "%s: msgid %08x refcnt %d", header,
7             decode_32 (sa->message_id), sa->refcnt));
8 -  LOG_DBG ((cls, level, "%s: life secs %llu kb %llu", header, sa->seconds,
9 -           sa->kilobytes));
10 +  LOG_DBG ((cls, level, "%s: life secs %llu kb %llu", header, (long long unsigned) sa->seconds,
11 +           (long long unsigned) sa->kilobytes));
12    for (proto = TAILQ_FIRST (&sa->protos); proto;
13         proto = TAILQ_NEXT (proto, link))
14 @@ -1040,5 +1040,5 @@
15        LOG_DBG ((LOG_TIMER, 95,
16                 "sa_setup_expirations: SA %p soft timeout in %llu seconds",
17 -               sa, seconds));
18 +               sa, (long long unsigned) seconds));
19        expiration.tv_sec += seconds;
20        sa->soft_death
21 @@ -1058,5 +1058,5 @@
22        LOG_DBG ((LOG_TIMER, 95,
23                 "sa_setup_expirations: SA %p hard timeout in %llu seconds",
24 -               sa, sa->seconds));
25 +               sa, (long long unsigned) sa->seconds));
26        expiration.tv_sec += sa->seconds;
27        sa->death