aboutsummaryrefslogtreecommitdiff
path: root/src/backend/port/win32/socket.c
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2014-06-11 19:50:29 -0400
committerNoah Misch <noah@leadboat.com>2014-06-11 19:50:29 -0400
commitd098b236f301d8e805f3c4d7fe940230c65d7a88 (patch)
tree79dccfbad1347395109c98da2de7988d07d12940 /src/backend/port/win32/socket.c
parenta26ae56f5173f1f8990ccf134730b964506f29ba (diff)
downloadpostgresql-d098b236f301d8e805f3c4d7fe940230c65d7a88.tar.gz
postgresql-d098b236f301d8e805f3c4d7fe940230c65d7a88.zip
Fix typos in comments.
Diffstat (limited to 'src/backend/port/win32/socket.c')
-rw-r--r--src/backend/port/win32/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/port/win32/socket.c b/src/backend/port/win32/socket.c
index 7b0f71b65dd..6a518e5b6d9 100644
--- a/src/backend/port/win32/socket.c
+++ b/src/backend/port/win32/socket.c
@@ -177,7 +177,7 @@ pgwin32_waitforsinglesocket(SOCKET s, int what, int timeout)
* Just a workaround of unknown locking problem with writing in UDP socket
* under high load: Client's pgsql backend sleeps infinitely in
* WaitForMultipleObjectsEx, pgstat process sleeps in pgwin32_select().
- * So, we will wait with small timeout(0.1 sec) and if sockect is still
+ * So, we will wait with small timeout(0.1 sec) and if socket is still
* blocked, try WSASend (see comments in pgwin32_select) and wait again.
*/
if ((what & FD_WRITE) && isUDP)