]> granicus.if.org Git - curl/commit
ntlm: Remove redundant ifdef USE_OPENSSL
authorpkubaj <pkubaj@users.noreply.github.com>
Wed, 14 Nov 2018 12:12:34 +0000 (12:12 +0000)
committerDaniel Gustafsson <daniel@yesql.se>
Tue, 20 Nov 2018 13:59:12 +0000 (14:59 +0100)
commit7c96f6a14b224df8f335164250ae175de30a5a96
tree4320c8f72ddae09f80f28e59aa6d0c3e0a358018
parent78ff4e0de3c53b026bb23a92c5c7abe3d285038e
ntlm: Remove redundant ifdef USE_OPENSSL

lib/curl_ntlm.c had code that read as follows:

  #ifdef USE_OPENSSL
  # ifdef USE_OPENSSL
  # else
  # ..
  # endif
  #endif

Remove the redundant USE_OPENSSL along with #else (it's not possible to
reach it anyway). The removed construction is a leftover from when the
SSLeay support was removed.

Closes #3269
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
lib/curl_ntlm_core.c