kernel: fix netfilter layer7 compilation in 3.3

SVN-Revision: 30026
lede-17.01
Jonas Gorski 2012-02-04 10:17:14 +00:00
parent d6afe712ab
commit 49874a57f1
1 changed files with 1 additions and 1 deletions

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
+}
+