mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +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
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* 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);
|
||||
if (*endptr) {
|
||||
exitval = EX_USAGE;
|
||||
warn("invalid rule number: %s", av - 1);
|
||||
warn("invalid rule number: %s", *(av - 1));
|
||||
continue;
|
||||
}
|
||||
seen = 0;
|
||||
|
|
Loading…
Reference in a new issue