Skip to content

Commit 919cffd

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

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
@@ -8375,7 +8375,7 @@ main(int argc, char **argv)
83758375
exit_nicely(conn);
83768376
}
83778377

8378-
/* Set always-secure search path, so malicous users can't take control. */
8378+
/* Set always-secure search path, so malicious users can't take control. */
83798379
res = PQexec(conn,
83808380
"SELECT pg_catalog.set_config('search_path', '', false)");
83818381
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8545,7 +8545,7 @@ main(int argc, char **argv)
85458545
exit_nicely(conn);
85468546
}
85478547

8548-
/* Set always-secure search path, so malicous users can't take control. */
8548+
/* Set always-secure search path, so malicious users can't take control. */
85498549
res = PQexec(conn,
85508550
"SELECT pg_catalog.set_config('search_path', '', false)");
85518551
if (PQresultStatus(res) != PGRES_TUPLES_OK)
@@ -8772,7 +8772,7 @@ main(int argc, char **argv)
87728772
exit_nicely(conn);
87738773
}
87748774

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

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)