From 3f92e056375ecf1bb1ca03e8af3dab730a32f3b9 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 5725613be..84bf7400a 100644 --- a/src/replication.c +++ b/src/replication.c @@ -1005,7 +1005,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. */