diff options
author | Yang Tse <yangsita@gmail.com> | 2011-08-26 18:57:50 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-08-26 18:57:50 +0200 |
commit | 407e08baad45b060e3fa1387190a8b12aca9ab60 (patch) | |
tree | 6a36bd53eb6350d79441948ee88910a4a556123f /lib/http_ntlm.h | |
parent | 186463e7fa863ad6aa7dfbb8ad4378badc93203c (diff) | |
download | curl-407e08baad45b060e3fa1387190a8b12aca9ab60.tar.gz |
NTLM single-sign on adjustments (X)
Functions renamed:
Curl_output_ntlm_sso -> Curl_output_ntlm_wb
sso_ntlm_close -> wb_ntlm_close
sso_ntlm_response -> wb_ntlm_response
sso_ntlm_initiate -> wb_ntlm_initiate
Preprocessor symbols renamed:
CURLAUTH_NTLM_SSO -> CURLAUTH_NTLM_WB
CURL_VERSION_NTLM_SSO -> CURL_VERSION_NTLM_WB
Diffstat (limited to 'lib/http_ntlm.h')
-rw-r--r-- | lib/http_ntlm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_ntlm.h b/lib/http_ntlm.h index d3b79ed2c..d13998f4e 100644 --- a/lib/http_ntlm.h +++ b/lib/http_ntlm.h @@ -32,7 +32,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn, bool proxy); #ifdef WINBIND_NTLM_AUTH_ENABLED /* this is for creating ntlm header output by delegating challenge/response to Samba's winbind daemon helper ntlm_auth */ -CURLcode Curl_output_ntlm_sso(struct connectdata *conn, bool proxy); +CURLcode Curl_output_ntlm_wb(struct connectdata *conn, bool proxy); #endif #ifdef USE_NTLM |