mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-29 00:34:33 +02:00
upstream commit
correctly return errors from kex_send_ext_info(). Fix from Sami Farin via https://github.com/openssh/openssh-portable/pull/50 Upstream-ID: c85999af28aaecbf92cfa2283381df81e839b42c
This commit is contained in:
parent
f83a0cfe16
commit
1622649b7a
4
kex.c
4
kex.c
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: kex.c,v 1.122 2016/09/19 19:02:19 markus Exp $ */
|
/* $OpenBSD: kex.c,v 1.123 2016/09/21 19:53:12 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
* Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
|
||||||
*
|
*
|
||||||
@ -354,7 +354,7 @@ kex_send_ext_info(struct ssh *ssh)
|
|||||||
r = 0;
|
r = 0;
|
||||||
out:
|
out:
|
||||||
free(algs);
|
free(algs);
|
||||||
return 0;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Loading…
x
Reference in New Issue
Block a user