]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
rpc/ssh: ssh_userauth_agent() is not supported on win32
authorMarc-André Lureau <marcandre.lureau@redhat.com>
Mon, 17 Apr 2023 11:54:00 +0000 (15:54 +0400)
committerMichal Privoznik <mprivozn@redhat.com>
Mon, 17 Apr 2023 13:02:37 +0000 (15:02 +0200)
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>
src/rpc/virnetlibsshsession.c

index e71a79d0fb85f52de31e382a1b2fc7818fa100e9..8cb57e857fb77af4dac5bcc45968c6191dfe38bd 100644 (file)
@@ -700,7 +700,9 @@ virNetLibsshAuthenticate(virNetLibsshSession *sess)
             break;
         case VIR_NET_LIBSSH_AUTH_AGENT:
             /* try to authenticate using ssh-agent */
+#ifndef WIN32
             ret = ssh_userauth_agent(sess->session, NULL);
+#endif
             if (ret == SSH_AUTH_ERROR) {
                 errmsg = ssh_get_error(sess->session);
                 virReportError(VIR_ERR_LIBSSH,
@@ -861,8 +863,13 @@ virNetLibsshSessionAuthAddPasswordAuth(virNetLibsshSession *sess,
 }
 
 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;
 
     virObjectLock(sess);
@@ -873,6 +880,7 @@ virNetLibsshSessionAuthAddAgentAuth(virNetLibsshSession *sess)
 
     virObjectUnlock(sess);
     return 0;
+#endif
 }
 
 int