From: Salvatore Sanfilippo Date: Fri, 2 Nov 2012 11:10:47 +0000 (-0700) Subject: Merge pull request #741 from Run/typo X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/06851a93de54c4d9bb0a6c52234ef5bb3db07d96?hp=-c Merge pull request #741 from Run/typo fix a typo in redis.h line 595 comment --- 06851a93de54c4d9bb0a6c52234ef5bb3db07d96 diff --combined src/redis.h index 811afaa1,5b1dc1de..9f6c0406 --- a/src/redis.h +++ b/src/redis.h @@@ -152,7 -152,6 +152,7 @@@ #define REDIS_LUA_CLIENT 512 /* This is a non connected client used by Lua */ #define REDIS_ASKING 1024 /* Client issued the ASKING command */ #define REDIS_CLOSE_ASAP 2048 /* Close this client ASAP */ +#define REDIS_UNIX_SOCKET 4096 /* Client connected via Unix domain socket */ /* Client request types */ #define REDIS_REQ_INLINE 1 @@@ -593,7 -592,7 +593,7 @@@ typedef struct struct redisServer { /* General */ redisDb *db; - dict *commands; /* Command table hahs table */ + dict *commands; /* Command table hash table */ aeEventLoop *el; unsigned lruclock:22; /* Clock incrementing every minute, for LRU */ unsigned lruclock_padding:10;