From 8e30c76af4f6332fe8bfeeca39b8f2e1b2df12ad Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Thu, 1 Aug 2019 15:32:40 -0700 Subject: [PATCH] Kill bogus 'no GSSAPI' warning when it isn't true Signed-off-by: David Woodhouse --- http.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/http.c b/http.c index 8495a480..b5871360 100644 --- a/http.c +++ b/http.c @@ -1173,8 +1173,10 @@ static int process_socks_proxy(struct openconnect_info *vpninfo) case SOCKS_AUTH_NO_ACCEPTABLE: vpn_progress(vpninfo, PRG_ERR, _("SOCKS server requires authentication\n")); +#if !defined(HAVE_GSSAPI) && !defined(_WIN32) vpn_progress(vpninfo, PRG_INFO, _("This version of OpenConnect was built without GSSAPI support\n")); +#endif return -EIO; default: -- 2.49.0