]> git.saurik.com Git - redis.git/commitdiff
Merge pull request #741 from Run/typo
authorSalvatore Sanfilippo <antirez@gmail.com>
Fri, 2 Nov 2012 11:10:47 +0000 (04:10 -0700)
committerSalvatore Sanfilippo <antirez@gmail.com>
Fri, 2 Nov 2012 11:10:47 +0000 (04:10 -0700)
fix a typo in redis.h line 595 comment

1  2 
src/redis.h

diff --combined src/redis.h
index 811afaa199e84c5f339e84dcbf2c665c2e77ee96,5b1dc1de5e6d575a373c8c67a77c4a0d6cc26917..9f6c04064987277e59ce0ddff99e9dd4ccc5d27a
  #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;