http_negotiate_sspi.c: fix compiler warning
warning C4706: assignment within conditional expression
This commit is contained in:
parent
b4d6db83de
commit
08b05efd20
@ -127,9 +127,11 @@ int Curl_input_negotiate(struct connectdata *conn, bool proxy,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(strlen(neg_ctx->server_name) == 0 &&
|
if(0 == strlen(neg_ctx->server_name)) {
|
||||||
(ret = get_gss_name(conn, proxy, neg_ctx)))
|
ret = get_gss_name(conn, proxy, neg_ctx);
|
||||||
|
if(ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
if(!neg_ctx->output_token) {
|
if(!neg_ctx->output_token) {
|
||||||
PSecPkgInfo SecurityPackage;
|
PSecPkgInfo SecurityPackage;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user