mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Give the right value when complaining it being wrong.
Reported by: danfe MFC after: 3 days
This commit is contained in:
parent
189ee6be40
commit
db75450166
1 changed files with 1 additions and 1 deletions
|
|
@ -151,7 +151,7 @@ main(int argc, char **argv)
|
|||
else
|
||||
speed = atoi(env_speed) * 177;
|
||||
if (speed <= 0)
|
||||
errx(EX_USAGE, "Invalid speed: %s", optarg);
|
||||
errx(EX_USAGE, "Invalid speed: %s", env_speed);
|
||||
|
||||
if (argc == 0)
|
||||
usage();
|
||||
|
|
|
|||
Loading…
Reference in a new issue