summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2020-12-25 07:52:59 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-12-26 23:54:25 +0100
commitaadc75626bbe84db3b67a030ce5b72259cb856ac (patch)
tree44fae8dccf04ffc887d3aee5ba04965fac8e4cef /lib
parent334f85b3fc541fb1deca2e8f5ff3f707ecebcb4f (diff)
downloadcurl-aadc75626bbe84db3b67a030ce5b72259cb856ac.tar.gz
misc: assorted typo fixes
Closes #6375
Diffstat (limited to 'lib')
-rw-r--r--lib/hash.c2
-rw-r--r--lib/system_win32.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/hash.c b/lib/hash.c
index 051c17626..5d433ad1f 100644
--- a/lib/hash.c
+++ b/lib/hash.c
@@ -175,7 +175,7 @@ Curl_hash_pick(struct Curl_hash *h, void *key, size_t key_len)
return NULL;
}
-#if defined(DEBUGBUILD) && defined(AGGRESIVE_TEST)
+#if defined(DEBUGBUILD) && defined(AGGRESSIVE_TEST)
void
Curl_hash_apply(Curl_hash *h, void *user,
void (*cb)(void *user, void *ptr))
diff --git a/lib/system_win32.c b/lib/system_win32.c
index b377da7d8..2132f43ef 100644
--- a/lib/system_win32.c
+++ b/lib/system_win32.c
@@ -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")) {