1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 12:43:14 +03:00

kernel: fix netfilter layer7 compilation in 3.3

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30026 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jogo 2012-02-04 10:17:14 +00:00
parent f4e4e8cad9
commit 0054748514

View File

@ -118,7 +118,7 @@
+ acct = nf_conn_acct_find(ct);
+ if (!acct)
+ return 0;
+ return (atomic64_read(acct[IP_CT_DIR_ORIGINAL].packets) + atomic64_read(acct[IP_CT_DIR_REPLY].packets));
+ return (atomic64_read(&acct[IP_CT_DIR_ORIGINAL].packets) + atomic64_read(&acct[IP_CT_DIR_REPLY].packets));
+#endif
+}
+