aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nf_sockopt.c
diff options
context:
space:
mode:
authorVarsha Rao <rvarsha016@gmail.com>2017-08-28 18:05:26 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2017-08-28 18:05:50 +0200
commitb38cf90133e5b86c26633c1041c2cdc7360cb346 (patch)
tree06a0576c732718fdb8d121cdb3a6b8f8dcb287b5 /net/netfilter/nf_sockopt.c
parente2f387d2df0ece6d4418bb09bef7802cfaf7142d (diff)
downloadlinux-b38cf90133e5b86c26633c1041c2cdc7360cb346.tar.gz
netfilter: Remove NFDEBUG()
Remove NFDEBUG and use pr_debug() instead of it. Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nf_sockopt.c')
-rw-r--r--net/netfilter/nf_sockopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/nf_sockopt.c b/net/netfilter/nf_sockopt.c
index c68c1e58b3628..d2a9e6b5d01f7 100644
--- a/net/netfilter/nf_sockopt.c
+++ b/net/netfilter/nf_sockopt.c
@@ -33,7 +33,7 @@ int nf_register_sockopt(struct nf_sockopt_ops *reg)
reg->set_optmin, reg->set_optmax)
|| overlap(ops->get_optmin, ops->get_optmax,
reg->get_optmin, reg->get_optmax))) {
- NFDEBUG("nf_sock overlap: %u-%u/%u-%u v %u-%u/%u-%u\n",
+ pr_debug("nf_sock overlap: %u-%u/%u-%u v %u-%u/%u-%u\n",
ops->set_optmin, ops->set_optmax,
ops->get_optmin, ops->get_optmax,
reg->set_optmin, reg->set_optmax,