Commit 70e82e5c authored by Maxim Zakharov's avatar Maxim Zakharov Committed by antirez
Browse files

A mistype fixed

parent 354a5de2
...@@ -189,7 +189,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) { ...@@ -189,7 +189,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) {
/* Add the multi bulk reply length. */ /* Add the multi bulk reply length. */
aux[0] = '*'; aux[0] = '*';
len = ll2string(aux+1,sizeof(aux-1),argc); len = ll2string(aux+1,sizeof(aux)-1,argc);
aux[len+1] = '\r'; aux[len+1] = '\r';
aux[len+2] = '\n'; aux[len+2] = '\n';
feedReplicationBacklog(aux,len+3); feedReplicationBacklog(aux,len+3);
......
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