Date: Sun, 25 Nov 2001 08:10:02 -0800 (PST) From: Brian Candler <B.Candler@pobox.com> To: freebsd-bugs@FreeBSD.org Subject: Re: bin/32270: ipfw misreads 'skipto' rule number with leading zero Message-ID: <200111251610.fAPGA2j64520@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR bin/32270; it has been noted by GNATS.
From: Brian Candler <B.Candler@pobox.com>
To: Peter Pentchev <roam@ringlet.net>
Cc: freebsd-gnats-submit@FreeBSD.org
Subject: Re: bin/32270: ipfw misreads 'skipto' rule number with leading zero
Date: Sun, 25 Nov 2001 16:07:04 +0000
I can't upgrade to 4.4-STABLE at the moment, but I do see the following in
ipfw.c from /src/ssbin.?? on the CD-ROM, line 1654:
} else if (!strncmp(*av, "skipto", strlen(*av))) {
rule.fw_flg |= IP_FW_F_SKIPTO; av++; ac--;
if (!ac)
show_usage("missing skipto rule number");
rule.fw_skipto_rule = strtoul(*av, NULL, 0); av++; ac--;
I think the third parameter to strtoul should be 10, not 0.
Regards,
Brian.
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200111251610.fAPGA2j64520>
