kernel: fix netfilter layer7 compilation in 3.3

SVN-Revision: 30026
This commit is contained in:
Jonas Gorski 2012-02-04 10:17:14 +00:00
parent d6afe712ab
commit 49874a57f1

View file

@ -118,7 +118,7 @@
+ acct = nf_conn_acct_find(ct); + acct = nf_conn_acct_find(ct);
+ if (!acct) + if (!acct)
+ return 0; + 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 +#endif
+} +}
+ +