aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-06-29 13:12:50 -0400
committerRobert Haas <rhaas@postgresql.org>2016-06-29 13:12:50 -0400
commit8dee039fa1e7b373a20985d80dbe1a5dbfd1eb2b (patch)
treee7f155b2afce02c1f8be297d75e933669b25cfa7 /src
parent73e6bea603548810769fd8ac8b19342f759ef07d (diff)
downloadpostgresql-8dee039fa1e7b373a20985d80dbe1a5dbfd1eb2b.tar.gz
postgresql-8dee039fa1e7b373a20985d80dbe1a5dbfd1eb2b.zip
Fix obsolete comment.
Commit 3bd261ca18c67eafe18088e58fab511e3b965418 should have updated this, but didn't. Extracted from a larger patch by Piotr Stefaniak.
Diffstat (limited to 'src')
-rw-r--r--src/backend/storage/ipc/shm_mq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/ipc/shm_mq.c b/src/backend/storage/ipc/shm_mq.c
index 5f6226c9bb9..44ede336162 100644
--- a/src/backend/storage/ipc/shm_mq.c
+++ b/src/backend/storage/ipc/shm_mq.c
@@ -103,7 +103,7 @@ struct shm_mq
* locally by copying the chunks into a backend-local buffer. mqh_buffer is
* the buffer, and mqh_buflen is the number of bytes allocated for it.
*
- * mqh_partial_message_bytes, mqh_expected_bytes, and mqh_length_word_complete
+ * mqh_partial_bytes, mqh_expected_bytes, and mqh_length_word_complete
* are used to track the state of non-blocking operations. When the caller
* attempts a non-blocking operation that returns SHM_MQ_WOULD_BLOCK, they
* are expected to retry the call at a later time with the same argument;