Skip to content

Commit 1ac334b

Browse files
committed
Fix some spelling errors in the documentation
Author: Daniel Gustafsson <daniel@yesql.se>
1 parent 273166a commit 1ac334b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/src/sgml/libpq.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7838,7 +7838,7 @@ main(int argc, char **argv)
78387838
exit_nicely(conn);
78397839
}
78407840

7841-
/* Set always-secure search path, so malicous users can't take control. */
7841+
/* Set always-secure search path, so malicious users can't take control. */
78427842
res = PQexec(conn,
78437843
"SELECT pg_catalog.set_config('search_path', '', false)");
78447844
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8008,7 +8008,7 @@ main(int argc, char **argv)
80088008
exit_nicely(conn);
80098009
}
80108010

8011-
/* Set always-secure search path, so malicous users can't take control. */
8011+
/* Set always-secure search path, so malicious users can't take control. */
80128012
res = PQexec(conn,
80138013
"SELECT pg_catalog.set_config('search_path', '', false)");
80148014
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8234,7 +8234,7 @@ main(int argc, char **argv)
82348234
exit_nicely(conn);
82358235
}
82368236

8237-
/* Set always-secure search path, so malicous users can't take control. */
8237+
/* Set always-secure search path, so malicious users can't take control. */
82388238
res = PQexec(conn, "SET search_path = testlibpq3");
82398239
if (PQresultStatus(res) != PGRES_COMMAND_OK)
82408240
{

doc/src/sgml/lobj.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -899,7 +899,7 @@ main(int argc, char **argv)
899899
exit_nicely(conn);
900900
}
901901

902-
/* Set always-secure search path, so malicous users can't take control. */
902+
/* Set always-secure search path, so malicious users can't take control. */
903903
res = PQexec(conn,
904904
"SELECT pg_catalog.set_config('search_path', '', false)");
905905
if (PQresultStatus(res) != PGRES_TUPLES_OK)

0 commit comments

Comments
 (0)