mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Felix Fietkau <nbd@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37226 3c298f89-4303-0410-b956-a3cf2f4a3e73
15 lines
359 B
Diff
15 lines
359 B
Diff
--- a/extensions/compat_xtables.h
|
|
+++ b/extensions/compat_xtables.h
|
|
@@ -82,4 +82,11 @@ static inline void proc_remove(struct pr
|
|
}
|
|
#endif
|
|
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 9, 0)
|
|
+static inline void proc_net_remove(struct net *net, const char *name)
|
|
+{
|
|
+ remove_proc_entry(name, net->proc_net);
|
|
+}
|
|
+#endif
|
|
+
|
|
#endif /* _XTABLES_COMPAT_H */
|