Fix indentation from cafe105655

Per buildfarm animal koel
This commit is contained in:
Daniel Gustafsson 2024-04-03 09:44:47 +02:00
parent 226261f387
commit 9301308bd1
1 changed files with 2 additions and 2 deletions

View 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.