Commit 32afaaef authored by Fabian Keil's avatar Fabian Keil Committed by Daniel Stenberg
Browse files

Fix the libauthretry changes from 7c0cbcf2

They broke the NTLM tests from 2023 to 2031.
parent 0ac82784
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -72,11 +72,11 @@ static long parse_auth_name(const char *arg)
{
  if (!arg)
    return CURLAUTH_NONE;
  if (strequal(arg, "basic") == 0)
  if (strequal(arg, "basic"))
    return CURLAUTH_BASIC;
  if (strequal(arg, "digest") == 0)
  if (strequal(arg, "digest"))
    return CURLAUTH_DIGEST;
  if (strequal(arg, "ntlm") == 0)
  if (strequal(arg, "ntlm"))
    return CURLAUTH_NTLM;
  return CURLAUTH_NONE;
}