summaryrefslogtreecommitdiff
path: root/net/mrt/patches/patch-af
diff options
context:
space:
mode:
Diffstat (limited to 'net/mrt/patches/patch-af')
-rw-r--r--net/mrt/patches/patch-af13
1 files changed, 13 insertions, 0 deletions
diff --git a/net/mrt/patches/patch-af b/net/mrt/patches/patch-af
new file mode 100644
index 00000000000..f5bd293531a
--- /dev/null
+++ b/net/mrt/patches/patch-af
@@ -0,0 +1,13 @@
+$NetBSD: patch-af,v 1.1 2006/03/22 23:55:37 joerg Exp $
+
+--- lib/mrt/buffer.c.orig 2006-03-22 23:49:03.000000000 +0000
++++ lib/mrt/buffer.c
+@@ -376,7 +376,7 @@ buffer_vprintf (buffer_t *buffer, char *
+ case 'x':
+ case 'b':
+ if (argtype == 'h')
+- ulongarg = va_arg (ap, short);
++ ulongarg = va_arg (ap, int);
+ else if (argtype == 'l')
+ ulongarg = va_arg (ap, long);
+ else