summaryrefslogtreecommitdiffstats
path: root/extensions
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2013-05-30 12:48:39 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-05-30 12:48:54 +0200
commit5ff71e97448ebbeed8b2ad4654726361a0c84131 (patch)
tree810016d136eab79202e2e781475ae9b4c1277e41 /extensions
parent17fd36631d3ca17b581be9acb8ab054931b5a917 (diff)
parent96c42d4c46df3edbd41fa47b860fba217f03cfeb (diff)
Merge branch 'stable'
Get fix for LED extension.
Diffstat (limited to 'extensions')
-rw-r--r--extensions/libxt_LED.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/extensions/libxt_LED.c b/extensions/libxt_LED.c
index e6cf8497..8622c379 100644
--- a/extensions/libxt_LED.c
+++ b/extensions/libxt_LED.c
@@ -49,7 +49,6 @@ static void LED_help(void)
static void LED_parse(struct xt_option_call *cb)
{
struct xt_led_info *led = cb->data;
- unsigned int delay;
xtables_option_parse(cb);
switch (cb->entry->id) {
@@ -60,7 +59,7 @@ static void LED_parse(struct xt_option_call *cb)
case O_LED_DELAY:
if (strncasecmp(cb->arg, "inf", 3) == 0)
led->delay = -1;
- else if (!xtables_strtoui(cb->arg, NULL, &delay, 0, UINT32_MAX))
+ else if (!xtables_strtoui(cb->arg, NULL, &led->delay, 0, UINT32_MAX))
xtables_error(PARAMETER_PROBLEM,
"Delay value must be within range 0..%u",
UINT32_MAX);