diff options
author | Magnus Hagander <magnus@hagander.net> | 2018-11-02 13:55:57 +0100 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2018-11-02 13:59:10 +0100 |
commit | 51afe7602bfa703f93b22fb81f13e8201f0f2b56 (patch) | |
tree | 9a3788de00768ad909af747e4e95f76c9b16d891 /doc/src | |
parent | eff71cd910ad8cd1931bd78103f8d5b9fd8e634b (diff) | |
download | postgresql-51afe7602bfa703f93b22fb81f13e8201f0f2b56.tar.gz postgresql-51afe7602bfa703f93b22fb81f13e8201f0f2b56.zip |
Fix some spelling errors in the documentation
Author: Daniel Gustafsson <daniel@yesql.se>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/libpq.sgml | 6 | ||||
-rw-r--r-- | doc/src/sgml/lobj.sgml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index d79467e9cd4..b2601003a62 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -7973,7 +7973,7 @@ main(int argc, char **argv) exit_nicely(conn); } - /* Set always-secure search path, so malicous users can't take control. */ + /* Set always-secure search path, so malicious users can't take control. */ res = PQexec(conn, "SELECT pg_catalog.set_config('search_path', '', false)"); if (PQresultStatus(res) != PGRES_TUPLES_OK) @@ -8143,7 +8143,7 @@ main(int argc, char **argv) exit_nicely(conn); } - /* Set always-secure search path, so malicous users can't take control. */ + /* Set always-secure search path, so malicious users can't take control. */ res = PQexec(conn, "SELECT pg_catalog.set_config('search_path', '', false)"); if (PQresultStatus(res) != PGRES_TUPLES_OK) @@ -8370,7 +8370,7 @@ main(int argc, char **argv) exit_nicely(conn); } - /* Set always-secure search path, so malicous users can't take control. */ + /* Set always-secure search path, so malicious users can't take control. */ res = PQexec(conn, "SET search_path = testlibpq3"); if (PQresultStatus(res) != PGRES_COMMAND_OK) { diff --git a/doc/src/sgml/lobj.sgml b/doc/src/sgml/lobj.sgml index 5fa50f44579..e0d635d0be0 100644 --- a/doc/src/sgml/lobj.sgml +++ b/doc/src/sgml/lobj.sgml @@ -899,7 +899,7 @@ main(int argc, char **argv) exit_nicely(conn); } - /* Set always-secure search path, so malicous users can't take control. */ + /* Set always-secure search path, so malicious users can't take control. */ res = PQexec(conn, "SELECT pg_catalog.set_config('search_path', '', false)"); if (PQresultStatus(res) != PGRES_TUPLES_OK) |