upstream: ssh_fetch_identitylist() returns the return value from
ssh_request_reply() so we should also check against != 0 ok djm OpenBSD-Commit-ID: 28d0028769d03e665688c61bb5fd943e18614952
This commit is contained in:
parent
7b4f70ddeb
commit
bc30b44684
4
authfd.c
4
authfd.c
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: authfd.c,v 1.122 2020/02/26 13:40:09 jsg Exp $ */
|
/* $OpenBSD: authfd.c,v 1.123 2020/03/06 18:24:39 markus Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
|
@ -342,7 +342,7 @@ ssh_agent_has_key(int sock, struct sshkey *key)
|
||||||
size_t i;
|
size_t i;
|
||||||
struct ssh_identitylist *idlist = NULL;
|
struct ssh_identitylist *idlist = NULL;
|
||||||
|
|
||||||
if ((r = ssh_fetch_identitylist(sock, &idlist)) < 0) {
|
if ((r = ssh_fetch_identitylist(sock, &idlist)) != 0) {
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue