netfilter-2.6/patch-o-matic-ng/trunk/net/ipv4/netfilter/ip_conntrack_quake3.c

pluto cvs at pld-linux.org
Thu Jul 28 15:34:03 CEST 2005


Author: pluto
Date: Thu Jul 28 15:33:56 2005
New Revision: 6261

Modified:
   netfilter-2.6/patch-o-matic-ng/trunk/net/ipv4/netfilter/ip_conntrack_quake3.c
Log:
- fix undefined "ip_nat_quake3_hook" in net/ipv4/netfilter/ip_nat_quake3.ko.


Modified: netfilter-2.6/patch-o-matic-ng/trunk/net/ipv4/netfilter/ip_conntrack_quake3.c
==============================================================================
--- netfilter-2.6/patch-o-matic-ng/trunk/net/ipv4/netfilter/ip_conntrack_quake3.c	(original)
+++ netfilter-2.6/patch-o-matic-ng/trunk/net/ipv4/netfilter/ip_conntrack_quake3.c	Thu Jul 28 15:33:56 2005
@@ -42,7 +42,8 @@
 static char quake3_buffer[65536];
 static DECLARE_LOCK(quake3_buffer_lock);
 
-static unsigned int (*ip_nat_quake3_hook)(struct ip_conntrack_expect *exp);
+unsigned int (*ip_nat_quake3_hook)(struct ip_conntrack_expect *exp);
+EXPORT_SYMBOL_GPL(ip_nat_quake3_hook);
 
 /* Quake3 master server reply will add > 100 expectations per reply packet; when
    doing lots of printk's, klogd may not be able to read /proc/kmsg fast enough */



More information about the pld-cvs-commit mailing list