misc: assorted typo fixes

Closes #6375
This commit is contained in:
XhmikosR 2020-12-25 07:52:59 +02:00 committed by Daniel Stenberg
parent 334f85b3fc
commit aadc75626b
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
8 changed files with 11 additions and 11 deletions

View file

@ -196,7 +196,7 @@ HMODULE Curl_load_library(LPCTSTR filename)
pLoadLibraryEx(filename, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) :
LoadLibrary(filename);
}
/* Detect if KB2533623 is installed, as LOAD_LIBARY_SEARCH_SYSTEM32 is only
/* Detect if KB2533623 is installed, as LOAD_LIBRARY_SEARCH_SYSTEM32 is only
supported on Windows Vista, Windows Server 2008, Windows 7 and Windows
Server 2008 R2 with this patch or natively on Windows 8 and above */
else if(pLoadLibraryEx && GetProcAddress(hKernel32, "AddDllDirectory")) {