From 418d3d358a1a09a59eec74bcc92649162585f8ec Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 8 Jan 2014 14:11:02 +0100 Subject: [PATCH] Clarify a comment in slaveTryPartialResynchronization(). --- src/replication.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replication.c b/src/replication.c index b1d08c77..c480c9e8 100644 --- a/src/replication.c +++ b/src/replication.c @@ -991,7 +991,7 @@ int slaveTryPartialResynchronization(int fd) { /* If we reach this point we receied either an error since the master does * not understand PSYNC, or an unexpected reply from the master. - * Reply with PSYNC_NOT_SUPPORTED in both cases. */ + * Return PSYNC_NOT_SUPPORTED to the caller in both cases. */ if (strncmp(reply,"-ERR",4)) { /* If it's not an error, log the unexpected event. */