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:58:42 +0100 |
commit | 4f67ff17e2b302a97b1a10127d91746d54f4655c (patch) | |
tree | 3531e495fe63358b12211d119345e31f761643f1 | |
parent | f5382cfc7036325867b4d99f156ef7800aa15501 (diff) | |
download | postgresql-4f67ff17e2b302a97b1a10127d91746d54f4655c.tar.gz postgresql-4f67ff17e2b302a97b1a10127d91746d54f4655c.zip |
Fix some spelling errors in the documentation
Author: Daniel Gustafsson <daniel@yesql.se>
-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 69ae6226998..103567fb415 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -8080,7 +8080,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) @@ -8250,7 +8250,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) @@ -8477,7 +8477,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 10bd17bf1ba..fbd65df28c7 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) |