summaryrefslogtreecommitdiff
path: root/net/openslp/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'net/openslp/patches/patch-ae')
-rw-r--r--net/openslp/patches/patch-ae10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/openslp/patches/patch-ae b/net/openslp/patches/patch-ae
index 2d42daab45f..cb22ee260f9 100644
--- a/net/openslp/patches/patch-ae
+++ b/net/openslp/patches/patch-ae
@@ -1,6 +1,6 @@
-$NetBSD: patch-ae,v 1.1 2004/11/27 04:41:12 jlam Exp $
+$NetBSD: patch-ae,v 1.1.4.1 2005/05/27 10:44:30 salo Exp $
---- common/slp_attr_l.l.orig 2002-05-10 01:23:43.000000000 -0400
+--- common/slp_attr_l.l.orig 2005-05-26 20:00:07.000000000 +0100
+++ common/slp_attr_l.l
@@ -82,9 +82,9 @@ int slp_attr_wrap(void);
@@ -9,7 +9,7 @@ $NetBSD: patch-ae,v 1.1 2004/11/27 04:41:12 jlam Exp $
-void slp_attr_close_lexer(unsigned int handle);
+void slp_attr_close_lexer(unsigned long handle);
--uint slp_attr_init_lexer(char *s);
+-unsigned int slp_attr_init_lexer(char *s);
+unsigned long slp_attr_init_lexer(char *s);
@@ -23,11 +23,11 @@ $NetBSD: patch-ae,v 1.1 2004/11/27 04:41:12 jlam Exp $
{
memset(&buf[0], 0x00, 2052);
strncpy(&buf[0], s, 2052);
-- return((uint)yy_scan_buffer(&buf[0], strlen(s) + 2));
+- return((unsigned int)yy_scan_buffer(&buf[0], strlen(s) + 2));
+ return((unsigned long)yy_scan_buffer(&buf[0], strlen(s) + 2));
}
--void attr_close_lexer(uint handle)
+-void attr_close_lexer(unsigned int handle)
+void attr_close_lexer(unsigned long handle)
{
// assert(handle != 0);