From 08b05efd2022c8041f2c5526bf82f9c71600618a Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sun, 14 Aug 2011 00:05:05 +0200 Subject: [PATCH] http_negotiate_sspi.c: fix compiler warning warning C4706: assignment within conditional expression --- lib/http_negotiate_sspi.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/http_negotiate_sspi.c b/lib/http_negotiate_sspi.c index 10eca69..875ed3c 100644 --- a/lib/http_negotiate_sspi.c +++ b/lib/http_negotiate_sspi.c @@ -127,9 +127,11 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy, return -1; } - if(strlen(neg_ctx->server_name) == 0 && - (ret = get_gss_name(conn, proxy, neg_ctx))) - return ret; + if(0 == strlen(neg_ctx->server_name)) { + ret = get_gss_name(conn, proxy, neg_ctx); + if(ret) + return ret; + } if(!neg_ctx->output_token) { PSecPkgInfo SecurityPackage; -- 2.7.4