]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix indentation from cafe1056558f
authorDaniel Gustafsson <dgustafsson@postgresql.org>
Wed, 3 Apr 2024 07:44:47 +0000 (09:44 +0200)
committerDaniel Gustafsson <dgustafsson@postgresql.org>
Wed, 3 Apr 2024 07:44:47 +0000 (09:44 +0200)
Per buildfarm animal koel

src/bin/psql/command.c

index 1e00b0d4869aa565cd16ee25c2e3a9d8acfd90ff..c005624e9c38d3e1bb80cd5f691d05105e486bfb 100644 (file)
@@ -3784,8 +3784,8 @@ wait_until_connected(PGconn *conn)
                /*
                 * If the user sends SIGINT between the cancel_pressed check, and
                 * polling of the socket, it will not be recognized. Instead, we will
-                * just wait until the next step in the connection sequence or forever,
-                * which might require users to send SIGTERM or SIGQUIT.
+                * just wait until the next step in the connection sequence or
+                * forever, which might require users to send SIGTERM or SIGQUIT.
                 *
                 * Some solutions would include the "self-pipe trick," using
                 * pselect(2) and ppoll(2), or using a timeout.