summaryrefslogtreecommitdiff
path: root/auth-options.c
diff options
context:
space:
mode:
authordjm <djm>2009-01-28 05:33:01 +0000
committerdjm <djm>2009-01-28 05:33:01 +0000
commit10c124f38196170d41172204cb140e5f5cbe972c (patch)
tree9cdaa75a1c4195fdf8dc878d48a220fe8a7338ae /auth-options.c
parent9060986622442a52685aa8dc99d7b57a3b53cfb6 (diff)
downloadopenssh-10c124f38196170d41172204cb140e5f5cbe972c.tar.gz
- djm@cvs.openbsd.org 2009/01/22 10:09:16
[auth-options.c] another chunk of a2port() diff that got away. wtfdjm??
Diffstat (limited to 'auth-options.c')
-rw-r--r--auth-options.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/auth-options.c b/auth-options.c
index 25361455..ab085c23 100644
--- a/auth-options.c
+++ b/auth-options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth-options.c,v 1.43 2008/06/10 23:06:19 djm Exp $ */
+/* $OpenBSD: auth-options.c,v 1.44 2009/01/22 10:09:16 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -255,7 +255,7 @@ auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum)
cp = "permitopen=\"";
if (strncasecmp(opts, cp, strlen(cp)) == 0) {
char *host, *p;
- u_short port;
+ int port;
char *patterns = xmalloc(strlen(opts) + 1);
opts += strlen(cp);
@@ -293,7 +293,7 @@ auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum)
goto bad_option;
}
host = cleanhostname(host);
- if (p == NULL || (port = a2port(p)) == 0) {
+ if (p == NULL || (port = a2port(p)) <= 0) {
debug("%.100s, line %lu: Bad permitopen port "
"<%.100s>", file, linenum, p ? p : "");
auth_debug_add("%.100s, line %lu: "