From 1fe4cd5de9c1127d06a092630f15b2e0b165cdfa Mon Sep 17 00:00:00 2001 From: "Herbert G. Fischer" Date: Tue, 18 Oct 2011 19:03:18 -0200 Subject: [PATCH] fixed source indenting --- src/redis.c | 4 ++-- src/redis.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/redis.c b/src/redis.c index c58b015d..b48ad178 100644 --- a/src/redis.c +++ b/src/redis.c @@ -848,8 +848,8 @@ void initServerConfig() { server.zset_max_ziplist_entries = REDIS_ZSET_MAX_ZIPLIST_ENTRIES; server.zset_max_ziplist_value = REDIS_ZSET_MAX_ZIPLIST_VALUE; server.shutdown_asap = 0; - server.repl_ping_slave_period = REDIS_REPL_PING_SLAVE_PERIOD; - server.repl_timeout = REDIS_REPL_TIMEOUT; + server.repl_ping_slave_period = REDIS_REPL_PING_SLAVE_PERIOD; + server.repl_timeout = REDIS_REPL_TIMEOUT; updateLRUClock(); resetServerSaveParams(); diff --git a/src/redis.h b/src/redis.h index c04b64f2..bdd7b44d 100644 --- a/src/redis.h +++ b/src/redis.h @@ -455,8 +455,8 @@ struct redisServer { char *masterauth; char *masterhost; int masterport; - int repl_ping_slave_period; - int repl_timeout; + int repl_ping_slave_period; + int repl_timeout; redisClient *master; /* client that is master for this slave */ int repl_syncio_timeout; /* timeout for synchronous I/O calls */ int replstate; /* replication status if the instance is a slave */