1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s4:lib/http: remove indentation level from http_parse_auth_response()

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Stefan Metzmacher 2017-07-20 14:44:51 +02:00 committed by Andreas Schneider
parent e42f12c6be
commit 56ab5cdbe0

View File

@ -61,17 +61,19 @@ static NTSTATUS http_parse_auth_response(enum http_auth_method auth,
struct http_header *h;
for (h = auth_response->headers; h != NULL; h = h->next) {
if (strncasecmp(h->key, "WWW-Authenticate", 16) == 0) {
switch (auth) {
case HTTP_AUTH_NTLM:
if (strncasecmp(h->value, "NTLM ", 5) == 0) {
*in = data_blob_string_const(h->value);
return NT_STATUS_OK;
}
break;
default:
break;
if (strncasecmp(h->key, "WWW-Authenticate", 16) != 0) {
continue;
}
switch (auth) {
case HTTP_AUTH_NTLM:
if (strncasecmp(h->value, "NTLM ", 5) == 0) {
*in = data_blob_string_const(h->value);
return NT_STATUS_OK;
}
break;
default:
break;
}
}