diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2002-07-23 21:15:13 +0000 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2002-07-23 21:15:13 +0000 |
commit | 41daec7538e7887dc540fdd56afbd21e3c42133e (patch) | |
tree | 97e54f2f2f3c8a7014bf7958915b8bce97a856f0 /sshd.c | |
parent | 7cea16bad574cbe60d22204df2e215ab1c8ce9e9 (diff) |
- stevesk@cvs.openbsd.org 2002/07/23 16:03:10
[sshd.c]
utmp_len is unsigned; display error consistent with other options.
ok markus@
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -42,7 +42,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.256 2002/07/19 15:43:33 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.257 2002/07/23 16:03:10 stevesk Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -911,8 +911,10 @@ main(int ac, char **av) break; case 'u': utmp_len = atoi(optarg); - if (utmp_len < 0 || utmp_len > MAXHOSTNAMELEN) - usage(); + if (utmp_len > MAXHOSTNAMELEN) { + fprintf(stderr, "Invalid utmp length.\n"); + exit(1); + } break; case 'o': if (process_server_config_line(&options, optarg, |