The maximum count is SKEY_MAX_SEQ + 1 not SKEY_MAX_SEQ - 1.
authormillert <millert@openbsd.org>
Sat, 3 Aug 2024 22:00:31 +0000 (22:00 +0000)
committermillert <millert@openbsd.org>
Sat, 3 Aug 2024 22:00:31 +0000 (22:00 +0000)
commit8e0d42cd5717ce2a9fdca7fbc0f490680a91ef37
tree878047edcea1da9f2f4a6b0c59bd7f318cf76e51
parentfb60ec6abe2666cd64ae233c0a37d18aa070e02d
The maximum count is SKEY_MAX_SEQ + 1 not SKEY_MAX_SEQ - 1.

Sequence numbers are in the range [0, SKEY_MAX_SEQ] inclusive.
This means the maximum value for the -n option (count) should be
SKEY_MAX_SEQ + 1.  From Denis Bodor.
usr.bin/skey/skey.c