summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-08-12 12:38:52 +0200
committerantirez <antirez@gmail.com>2013-08-12 12:50:45 +0200
commitc06de115af0871464c52662355d4b2b107d4f1c8 (patch)
tree53ff1914bdaa405c0f21fab75137a3d7b642138c
parentdcc48a81436c08128a15f88170eee1287122e87a (diff)
downloadredis-c06de115af0871464c52662355d4b2b107d4f1c8.tar.gz
replicationFeedSlaves() func name typo: feedReplicationBacklogWithObject -> feedReplicationBacklog.
-rw-r--r--src/replication.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/replication.c b/src/replication.c
index e0f9646c3..27187476b 100644
--- a/src/replication.c
+++ b/src/replication.c
@@ -206,7 +206,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) {
aux[len+2] = '\n';
feedReplicationBacklog(aux,len+3);
feedReplicationBacklogWithObject(argv[j]);
- feedReplicationBacklogWithObject(aux+len+1,2);
+ feedReplicationBacklog(aux+len+1,2);
}
}