diff --git a/extensions/xt_quota2.c b/extensions/xt_quota2.c index ab9cb08..73531d8 100644 --- a/extensions/xt_quota2.c +++ b/extensions/xt_quota2.c @@ -153,15 +153,13 @@ static int quota_mt2_check(const struct xt_mtchk_param *par) q->name[sizeof(q->name)-1] = '\0'; if (*q->name == '.' || strchr(q->name, '/') != NULL) { - printk(KERN_ERR "xt_quota<%u>: illegal name\n", - par->match->revision); + printk(KERN_ERR "xt_quota.3: illegal name\n"); return -EINVAL; } q->master = q2_get_counter(q); if (q->master == NULL) { - printk(KERN_ERR "xt_quota<%u>: memory alloc failure\n", - par->match->revision); + printk(KERN_ERR "xt_quota.3: memory alloc failure\n"); return -ENOMEM; }