Browse Source

ntml_wb: fix buffer type typo

Closes #12825
Stefan Eissing 2 months ago
parent
commit
e75a48d2c3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/curl_ntlm_wb.c

+ 1 - 1
lib/curl_ntlm_wb.c

@@ -266,7 +266,7 @@ static CURLcode ntlm_wb_response(struct Curl_easy *data, struct ntlmdata *ntlm,
   size_t len_in = strlen(input), len_out = 0;
   struct dynbuf b;
   char *ptr = NULL;
-  usigned char buf[1024]
+  unsigned char buf[1024];
   Curl_dyn_init(&b, MAX_NTLM_WB_RESPONSE);
 
   while(len_in > 0) {