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
482d678e
Commit
482d678e
authored
Dec 05, 2017
by
Itamar Haber
Browse files
C style
parent
b23c8bab
Changes
1
Show whitespace changes
Inline
Side-by-side
src/networking.c
View file @
482d678e
...
...
@@ -610,11 +610,9 @@ void addReplyHelp(client *c, const char **help) {
"%s <subcommand> arg arg ... arg. Subcommands are:"
,
cmd
);
sdsfree
(
cmd
);
while
(
help
[
blen
])
{
addReplyStatus
(
c
,
help
[
blen
++
]);
}
while
(
help
[
blen
])
addReplyStatus
(
c
,
help
[
blen
++
]);
blen
+=
1
;
/* Account for the header line(s). */
blen
++
;
/* Account for the header line(s). */
setDeferredMultiBulkLength
(
c
,
blenp
,
blen
);
}
...
...
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