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
c713b1eb
Commit
c713b1eb
authored
Aug 28, 2013
by
Maxim Zakharov
Committed by
antirez
Sep 03, 2013
Browse files
A mistype fixed
parent
56ce0686
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/replication.c
View file @
c713b1eb
...
...
@@ -189,7 +189,7 @@ void replicationFeedSlaves(list *slaves, int dictid, robj **argv, int argc) {
/* Add the multi bulk reply length. */
aux
[
0
]
=
'*'
;
len
=
ll2string
(
aux
+
1
,
sizeof
(
aux
-
1
)
,
argc
);
len
=
ll2string
(
aux
+
1
,
sizeof
(
aux
)
-
1
,
argc
);
aux
[
len
+
1
]
=
'\r'
;
aux
[
len
+
2
]
=
'\n'
;
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