mirror of
https://github.com/fluencelabs/redis
synced 2025-06-18 03:31:21 +00:00
A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files.
This commit is contained in:
4
redis.c
4
redis.c
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2006-2009, Salvatore Sanfilippo <antirez at gmail dot com>
|
||||
* Copyright (c) 2009-2010, Salvatore Sanfilippo <antirez at gmail dot com>
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
@ -2346,7 +2346,7 @@ static int selectDb(redisClient *c, int id) {
|
||||
|
||||
static void *dupClientReplyValue(void *o) {
|
||||
incrRefCount((robj*)o);
|
||||
return 0;
|
||||
return o;
|
||||
}
|
||||
|
||||
static redisClient *createClient(int fd) {
|
||||
|
Reference in New Issue
Block a user