Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
70e82e5c
Commit
70e82e5c
authored
Aug 28, 2013
by
Maxim Zakharov
Committed by
antirez
Sep 03, 2013
Browse files
A mistype fixed
parent
354a5de2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/replication.c
View file @
70e82e5c
...
@@ -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);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment