From: Amit Kapila Date: Tue, 6 Jan 2026 04:13:40 +0000 (+0000) Subject: Fix typo in slot.c. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=63ed3bc7f9a66035e0b741aaa542de35a90fe1cc;p=thirdparty%2Fpostgresql.git Fix typo in slot.c. Author: Chao Li Discussion: https://postgr.es/m/AC9B87F1-ED04-4547-B85C-9443B4253A08@gmail.com Discussion: https://postgr.es/m/CAJDiXggZXQZ7bD0QcTizDt6us9aX6ZKK4dWxzgb5x3+TsVHjqQ@mail.gmail.com --- diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c index 75d26fa61ea..ce41441c581 100644 --- a/src/backend/replication/slot.c +++ b/src/backend/replication/slot.c @@ -635,7 +635,7 @@ retry: LWLockAcquire(ReplicationSlotControlLock, LW_SHARED); - /* Check if the slot exits with the given name. */ + /* Check if the slot exists with the given name. */ s = SearchNamedReplicationSlot(name, false); if (s == NULL || !s->in_use) {