mirror of https://github.com/redis/redis.git
Fix a typo.
This commit is contained in:
parent
022f09447b
commit
9b2b67acc0
|
@ -316,7 +316,7 @@ void msetGenericCommand(client *c, int nx) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Handle the NX flag. The MSETNX semantic is to return zero and don't
|
/* Handle the NX flag. The MSETNX semantic is to return zero and don't
|
||||||
* set anything if at least one key alerady exists. */
|
* set anything if at least one key already exists. */
|
||||||
if (nx) {
|
if (nx) {
|
||||||
for (j = 1; j < c->argc; j += 2) {
|
for (j = 1; j < c->argc; j += 2) {
|
||||||
if (lookupKeyWrite(c->db,c->argv[j]) != NULL) {
|
if (lookupKeyWrite(c->db,c->argv[j]) != NULL) {
|
||||||
|
|
Loading…
Reference in New Issue