From 88e947136b47664b6936b35542f2d1eda0c90588 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Sat, 19 Apr 2025 19:17:42 +0900 Subject: Fix typos and grammar in the code The large majority of these have been introduced by recent commits done in the v18 development cycle. Author: Alexander Lakhin Discussion: https://postgr.es/m/9a7763ab-5252-429d-a943-b28941e0e28b@gmail.com --- src/interfaces/libpq/fe-auth-oauth-curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interfaces/libpq/fe-auth-oauth-curl.c') diff --git a/src/interfaces/libpq/fe-auth-oauth-curl.c b/src/interfaces/libpq/fe-auth-oauth-curl.c index ddd87dcf02d..c195e00cd28 100644 --- a/src/interfaces/libpq/fe-auth-oauth-curl.c +++ b/src/interfaces/libpq/fe-auth-oauth-curl.c @@ -1205,7 +1205,7 @@ register_socket(CURL *curl, curl_socket_t socket, int what, void *ctx, res = epoll_ctl(actx->mux, op, socket, &ev); if (res < 0 && errno == EEXIST) { - /* We already had this socket in the pollset. */ + /* We already had this socket in the poll set. */ op = EPOLL_CTL_MOD; res = epoll_ctl(actx->mux, op, socket, &ev); } -- cgit v1.2.3