summaryrefslogtreecommitdiff
path: root/auth2.c
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2020-03-06 18:16:21 +0000
committerDamien Miller <djm@mindrot.org>2020-03-13 13:13:30 +1100
commit16d4f9961c75680aab374dee762a5baa0ad507af (patch)
tree9facb1a5c81e2906b5516761c14e1f52c3edca8a /auth2.c
parent5f25afe5216ba7f8921e04f79aa4ca0624eca820 (diff)
downloadopenssh-git-16d4f9961c75680aab374dee762a5baa0ad507af.tar.gz
upstream: exit on parse failures in input_service_request; ok djm
OpenBSD-Commit-ID: 6a7e1bfded26051d5aa893c030229b1ee6a0d5d2
Diffstat (limited to 'auth2.c')
-rw-r--r--auth2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/auth2.c b/auth2.c
index 0e776224..91aaf34a 100644
--- a/auth2.c
+++ b/auth2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2.c,v 1.157 2019/09/06 04:53:27 djm Exp $ */
+/* $OpenBSD: auth2.c,v 1.158 2020/03/06 18:16:21 markus Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -217,7 +217,7 @@ input_service_request(int type, u_int32_t seq, struct ssh *ssh)
r = 0;
out:
free(service);
- return 0;
+ return r;
}
#define MIN_FAIL_DELAY_SECONDS 0.005