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:38:52 +0200
commit004f00bfa461c7ffd3d17862bb9c50659b8c6405 (patch)
treed959e6428c9a7dbdd3629b3f4d79ac0202f10023
parent45d4e06e9301b3c6e45e1d0a2f50dc04b079c196 (diff)
downloadredis-004f00bfa461c7ffd3d17862bb9c50659b8c6405.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 2073cd904..cb455042b 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);
}
}