From: Jan Engelhardt Date: Fri, 20 May 2011 14:01:18 +0000 (+0200) Subject: libxt_quota: readd missing XTOPT_PUT request X-Git-Tag: v1.4.11~1^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67db7615580f5c3490a39310f5adcb4e767ea6a8;p=thirdparty%2Fiptables.git libxt_quota: readd missing XTOPT_PUT request Signed-off-by: Jan Engelhardt --- diff --git a/extensions/libxt_quota.c b/extensions/libxt_quota.c index 988f404f..ff498da7 100644 --- a/extensions/libxt_quota.c +++ b/extensions/libxt_quota.c @@ -13,7 +13,8 @@ enum { static const struct xt_option_entry quota_opts[] = { {.name = "quota", .id = O_QUOTA, .type = XTTYPE_UINT64, - .flags = XTOPT_MAND | XTOPT_INVERT}, + .flags = XTOPT_MAND | XTOPT_INVERT | XTOPT_PUT, + XTOPT_POINTER(struct xt_quota_info, quota)}, XTOPT_TABLEEND, };