From 10bd08d0f3f2770f1da62d54d01b898c85c51bd9 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Thu, 13 Aug 2009 00:44:39 +0200 Subject: [PATCH] psd: remove empty checkentry function --- extensions/xt_psd.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/extensions/xt_psd.c b/extensions/xt_psd.c index 750fad6..cadebdc 100644 --- a/extensions/xt_psd.c +++ b/extensions/xt_psd.c @@ -303,17 +303,12 @@ out_match: return true; } -static bool xt_psd_checkentry(const struct xt_mtchk_param *par) { - return true; -} - static struct xt_match xt_psd_reg = { .name = "psd", .family = AF_INET, .revision = 9, .match = xt_psd_match, .matchsize = sizeof(struct xt_psd_info), - .checkentry = xt_psd_checkentry, .me = THIS_MODULE };