Commit c06de115 authored by antirez's avatar antirez
Browse files

replicationFeedSlaves() func name typo: feedReplicationBacklogWithObject -> feedReplicationBacklog.

parent dcc48a81
...@@ -206,7 +206,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) { ...@@ -206,7 +206,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) {
aux[len+2] = '\n'; aux[len+2] = '\n';
feedReplicationBacklog(aux,len+3); feedReplicationBacklog(aux,len+3);
feedReplicationBacklogWithObject(argv[j]); feedReplicationBacklogWithObject(argv[j]);
feedReplicationBacklogWithObject(aux+len+1,2); feedReplicationBacklog(aux+len+1,2);
} }
} }
......
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