diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2009-11-26 00:05:06 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2009-11-26 00:05:06 +0000 |
commit | 36d88d4684385443913740cc573e69c3457466f6 (patch) | |
tree | 60edba1285186af563a65e877ba07a88a0868419 /net/vpnc/patches | |
parent | 920cf95001c5e342f6e223782b94c47e922952e4 (diff) | |
download | pkgsrc-36d88d4684385443913740cc573e69c3457466f6.tar.gz |
fix some printf() format strings on alpha
Diffstat (limited to 'net/vpnc/patches')
-rw-r--r-- | net/vpnc/patches/patch-ag | 26 | ||||
-rw-r--r-- | net/vpnc/patches/patch-ah | 11 |
2 files changed, 31 insertions, 6 deletions
diff --git a/net/vpnc/patches/patch-ag b/net/vpnc/patches/patch-ag index 88a5e53f1ce..72bfd13d29e 100644 --- a/net/vpnc/patches/patch-ag +++ b/net/vpnc/patches/patch-ag @@ -1,13 +1,27 @@ -$NetBSD: patch-ag,v 1.1 2009/02/04 21:51:27 drochner Exp $ +$NetBSD: patch-ag,v 1.2 2009/11/26 00:05:07 dmcmahill Exp $ ---- tunip.c.orig 2009-02-04 16:07:34.000000000 +0100 -+++ tunip.c -@@ -881,7 +881,7 @@ static void vpnc_main_loop(struct sa_blo - } +--- tunip.c.orig 2008-11-19 20:55:51.000000000 +0000 ++++ tunip.c 2009-11-25 23:23:47.000000000 +0000 +@@ -178,5 +178,5 @@ + } + if (r < (p->ip_hl << 2) + s->ipsec.em->fixed_header_size) { +- syslog(LOG_ALERT, "packet too short. got %d, expected %d", r, (p->ip_hl << 2) + s->ipsec.em->fixed_header_size); ++ syslog(LOG_ALERT, "packet too short. got %ld, expected %ld", (long) r, (long) ((p->ip_hl << 2) + s->ipsec.em->fixed_header_size)); + return -1; + } +@@ -217,6 +217,6 @@ + } + if (r < s->ipsec.em->fixed_header_size) { +- syslog(LOG_ALERT, "packet too short from %s. got %d, expected %d", +- inet_ntoa(s->dst), r, s->ipsec.em->fixed_header_size); ++ syslog(LOG_ALERT, "packet too short from %s. got %ld, expected %ld", ++ inet_ntoa(s->dst), (long) r, (long) (s->ipsec.em->fixed_header_size)); + return -1; + } +@@ -882,5 +882,5 @@ } DEBUG(2,printf("lifetime status: %ld of %u seconds used, %u|%u of %u kbytes used\n", - time(NULL) - s->ipsec.life.start, + (long)(time(NULL) - s->ipsec.life.start), s->ipsec.life.seconds, s->ipsec.life.rx/1024, - s->ipsec.life.tx/1024, diff --git a/net/vpnc/patches/patch-ah b/net/vpnc/patches/patch-ah new file mode 100644 index 00000000000..10fa3d86663 --- /dev/null +++ b/net/vpnc/patches/patch-ah @@ -0,0 +1,11 @@ +$NetBSD: patch-ah,v 1.1 2009/11/26 00:05:07 dmcmahill Exp $ + +--- isakmp-pkt.c.orig 2008-11-19 20:36:12.000000000 +0000 ++++ isakmp-pkt.c 2009-11-25 23:25:00.000000000 +0000 +@@ -821,5 +821,5 @@ + + DEBUG(3, printf("BEGIN_PARSE\n")); +- DEBUG(3, printf("Recieved Packet Len: %d\n", data_len)); ++ DEBUG(3, printf("Recieved Packet Len: %ld\n", (long) data_len)); + fetchn(r->i_cookie, ISAKMP_COOKIE_LENGTH); + hex_dump("i_cookie", r->i_cookie, ISAKMP_COOKIE_LENGTH, NULL); |