mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
Format mismatch in error message.
Submitted by: bde
This commit is contained in:
parent
1f68c20551
commit
00bbf86dd5
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32326
@ -16,7 +16,7 @@
|
|||||||
*
|
*
|
||||||
* NEW command line interface for IP firewall facility
|
* NEW command line interface for IP firewall facility
|
||||||
*
|
*
|
||||||
* $Id: ipfw.c,v 1.50 1998/01/06 00:11:57 alex Exp $
|
* $Id: ipfw.c,v 1.51 1998/01/07 02:23:04 alex Exp $
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -434,7 +434,7 @@ list(ac, av)
|
|||||||
rulenum = strtoul(*av++, &endptr, 10);
|
rulenum = strtoul(*av++, &endptr, 10);
|
||||||
if (*endptr) {
|
if (*endptr) {
|
||||||
exitval = EX_USAGE;
|
exitval = EX_USAGE;
|
||||||
warn("invalid rule number: %s", av - 1);
|
warn("invalid rule number: %s", *(av - 1));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
seen = 0;
|
seen = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user