From 5278462c32a70cd972a8cc824a38f164151d6c6d Mon Sep 17 00:00:00 2001 From: Isaac Boukris Date: Fri, 27 Jan 2017 00:42:28 +0200 Subject: authneg: clear auth.multi flag at http_done This flag is meant for the current request based on authentication state, once the request is done we can clear the flag. Also change auth.multi to auth.multipass for better readability. Fixes https://github.com/curl/curl/issues/1095 Closes https://github.com/curl/curl/pull/1326 Signed-off-by: Isaac Boukris Reported-by: Michael Kaufmann --- lib/urldata.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/urldata.h') diff --git a/lib/urldata.h b/lib/urldata.h index ef6a78846..7402332d1 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1283,8 +1283,8 @@ struct auth { this resource */ bool done; /* TRUE when the auth phase is done and ready to do the *actual* request */ - bool multi; /* TRUE if this is not yet authenticated but within the auth - multipass negotiation */ + bool multipass; /* TRUE if this is not yet authenticated but within the + auth multipass negotiation */ bool iestyle; /* TRUE if digest should be done IE-style or FALSE if it should be RFC compliant */ }; -- cgit v1.2.3