psd: remove empty checkentry function

This commit is contained in:
Jan Engelhardt
2009-08-13 00:44:39 +02:00
parent 1e5315d338
commit 10bd08d0f3

View File

@@ -303,17 +303,12 @@ out_match:
return true; return true;
} }
static bool xt_psd_checkentry(const struct xt_mtchk_param *par) {
return true;
}
static struct xt_match xt_psd_reg = { static struct xt_match xt_psd_reg = {
.name = "psd", .name = "psd",
.family = AF_INET, .family = AF_INET,
.revision = 9, .revision = 9,
.match = xt_psd_match, .match = xt_psd_match,
.matchsize = sizeof(struct xt_psd_info), .matchsize = sizeof(struct xt_psd_info),
.checkentry = xt_psd_checkentry,
.me = THIS_MODULE .me = THIS_MODULE
}; };