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
5fd6dee0
Commit
5fd6dee0
authored
Nov 05, 2013
by
antirez
Browse files
Fixed typo in parseScanCursorOrReply(): ad -> at.
Thanks to @badboy for reporting it.
parent
ebcb6251
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/db.c
View file @
5fd6dee0
...
@@ -350,7 +350,7 @@ void scanCallback(void *privdata, const dictEntry *de) {
...
@@ -350,7 +350,7 @@ void scanCallback(void *privdata, const dictEntry *de) {
if
(
val
)
listAddNodeTail
(
keys
,
val
);
if
(
val
)
listAddNodeTail
(
keys
,
val
);
}
}
/* Try to parse a SCAN cursor stored a
d
object 'o':
/* Try to parse a SCAN cursor stored a
t
object 'o':
* if the cursor is valid, store it as unsigned integer into *cursor and
* if the cursor is valid, store it as unsigned integer into *cursor and
* returns REDIS_OK. Otherwise return REDIS_ERR and send an error to the
* returns REDIS_OK. Otherwise return REDIS_ERR and send an error to the
* client. */
* client. */
...
...
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