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
1b2ac3b2
Commit
1b2ac3b2
authored
Jan 11, 2013
by
antirez
Browse files
Typo fixed, ASCI -> ASCII.
parent
c5f23ca7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/networking.c
View file @
1b2ac3b2
...
...
@@ -1211,7 +1211,7 @@ void clientCommand(redisClient *c) {
* CLIENT LIST format will break. You should always be able to
* split by space to get the different fields. */
for
(
j
=
0
;
j
<
len
;
j
++
)
{
if
(
p
[
j
]
<
'!'
||
p
[
j
]
>
'~'
)
{
/* ASCI is assumed. */
if
(
p
[
j
]
<
'!'
||
p
[
j
]
>
'~'
)
{
/* ASCI
I
is assumed. */
addReplyError
(
c
,
"Client names cannot contain spaces, "
"newlines or special characters."
);
...
...
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