summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/hmac_openssl.c2
-rw-r--r--src/common/pg_lzcompress.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/hmac_openssl.c b/src/common/hmac_openssl.c
index b5e3065d1a9..5df06839e01 100644
--- a/src/common/hmac_openssl.c
+++ b/src/common/hmac_openssl.c
@@ -34,7 +34,7 @@
/*
* In backend, use an allocation in TopMemoryContext to count for resowner
- * cleanup handling if necesary. For versions of OpenSSL where HMAC_CTX is
+ * cleanup handling if necessary. For versions of OpenSSL where HMAC_CTX is
* known, just use palloc(). In frontend, use malloc to be able to return
* a failure status back to the caller.
*/
diff --git a/src/common/pg_lzcompress.c b/src/common/pg_lzcompress.c
index fdd527f757a..a30a2c2eb83 100644
--- a/src/common/pg_lzcompress.c
+++ b/src/common/pg_lzcompress.c
@@ -147,7 +147,7 @@
*
* For each subsequent entry in the history list, the "good_match"
* is lowered by 10%. So the compressor will be more happy with
- * short matches the farer it has to go back in the history.
+ * short matches the further it has to go back in the history.
* Another "speed against ratio" preference characteristic of
* the algorithm.
*