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
ba48e7e9
Commit
ba48e7e9
authored
Aug 19, 2020
by
Madelyn Olson
Committed by
Oran Agra
Sep 01, 2020
Browse files
Fixed hset error since it's shared with hmset (#7678)
(cherry picked from commit
cbd9af85
)
parent
4e19358d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/t_hash.c
View file @
ba48e7e9
...
...
@@ -532,7 +532,7 @@ void hsetCommand(client *c) {
robj
*
o
;
if
((
c
->
argc
%
2
)
==
1
)
{
addReplyError
(
c
,
"wrong number of arguments for
HMSET"
);
addReplyError
Format
(
c
,
"wrong number of arguments for
'%s' command"
,
c
->
cmd
->
name
);
return
;
}
...
...
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