mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-11 12:09:32 +00:00
Resync ssh-keygen -W error message with upstream.
This commit is contained in:
parent
43cceff82c
commit
7050896e73
@ -2485,9 +2485,9 @@ main(int argc, char **argv)
|
||||
case 'W':
|
||||
generator_wanted = (u_int32_t)strtonum(optarg, 1,
|
||||
UINT_MAX, &errstr);
|
||||
if (errstr)
|
||||
fatal("Desired generator has bad value: %s (%s)",
|
||||
optarg, errstr);
|
||||
if (errstr != NULL)
|
||||
fatal("Desired generator invalid: %s (%s)",
|
||||
optarg, errstr);
|
||||
break;
|
||||
#endif /* WITH_OPENSSL */
|
||||
case '?':
|
||||
|
Loading…
Reference in New Issue
Block a user