Commit 3f92e056 authored by antirez's avatar antirez
Browse files

Clarify a comment in slaveTryPartialResynchronization().

parent fdf50e1e
...@@ -1005,7 +1005,7 @@ int slaveTryPartialResynchronization(int fd) { ...@@ -1005,7 +1005,7 @@ int slaveTryPartialResynchronization(int fd) {
/* If we reach this point we receied either an error since the master does /* If we reach this point we receied either an error since the master does
* not understand PSYNC, or an unexpected reply from the master. * 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 (strncmp(reply,"-ERR",4)) {
/* If it's not an error, log the unexpected event. */ /* If it's not an error, log the unexpected event. */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment