mirror of https://gitee.com/openkylin/libvirt.git
rpc/ssh: ssh_userauth_agent() is not supported on win32
The function does not exist on win32. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
e06beacec2
commit
c4ec51edd6
|
@ -700,7 +700,9 @@ virNetLibsshAuthenticate(virNetLibsshSession *sess)
|
||||||
break;
|
break;
|
||||||
case VIR_NET_LIBSSH_AUTH_AGENT:
|
case VIR_NET_LIBSSH_AUTH_AGENT:
|
||||||
/* try to authenticate using ssh-agent */
|
/* try to authenticate using ssh-agent */
|
||||||
|
#ifndef WIN32
|
||||||
ret = ssh_userauth_agent(sess->session, NULL);
|
ret = ssh_userauth_agent(sess->session, NULL);
|
||||||
|
#endif
|
||||||
if (ret == SSH_AUTH_ERROR) {
|
if (ret == SSH_AUTH_ERROR) {
|
||||||
errmsg = ssh_get_error(sess->session);
|
errmsg = ssh_get_error(sess->session);
|
||||||
virReportError(VIR_ERR_LIBSSH,
|
virReportError(VIR_ERR_LIBSSH,
|
||||||
|
@ -861,8 +863,13 @@ virNetLibsshSessionAuthAddPasswordAuth(virNetLibsshSession *sess,
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
virNetLibsshSessionAuthAddAgentAuth(virNetLibsshSession *sess)
|
virNetLibsshSessionAuthAddAgentAuth(virNetLibsshSession *sess G_GNUC_UNUSED)
|
||||||
{
|
{
|
||||||
|
#ifdef WIN32
|
||||||
|
virReportError(VIR_ERR_LIBSSH, "%s",
|
||||||
|
_("Agent authentication is not supported on this host"));
|
||||||
|
return -1;
|
||||||
|
#else
|
||||||
virNetLibsshAuthMethod *auth;
|
virNetLibsshAuthMethod *auth;
|
||||||
|
|
||||||
virObjectLock(sess);
|
virObjectLock(sess);
|
||||||
|
@ -873,6 +880,7 @@ virNetLibsshSessionAuthAddAgentAuth(virNetLibsshSession *sess)
|
||||||
|
|
||||||
virObjectUnlock(sess);
|
virObjectUnlock(sess);
|
||||||
return 0;
|
return 0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in New Issue