1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

http_negotiate: Don't expose functions when HTTP is disabled

This commit is contained in:
Steve Holme 2019-05-10 13:08:04 +01:00
parent b4988286a9
commit fb243b0475
No known key found for this signature in database
GPG Key ID: 4059CB85CA7E8F19

View File

@ -22,7 +22,7 @@
*
***************************************************************************/
#ifdef USE_SPNEGO
#if !defined(CURL_DISABLE_HTTP) && defined(USE_SPNEGO)
/* this is for Negotiate header input */
CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
@ -33,6 +33,6 @@ CURLcode Curl_output_negotiate(struct connectdata *conn, bool proxy);
void Curl_cleanup_negotiate(struct connectdata *conn);
#endif /* USE_SPNEGO */
#endif /* !CURL_DISABLE_HTTP && USE_SPNEGO */
#endif /* HEADER_CURL_HTTP_NEGOTIATE_H */