diff options
Diffstat (limited to 'hiredis.h')
-rw-r--r-- | hiredis.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,9 +40,9 @@ * should use the "errno" variable to find out what is wrong. * For other values, the "errstr" field will hold a description. */ #define REDIS_ERR_IO 1 /* error in read or write */ -#define REDIS_ERR_CONN 2 /* error connecting */ #define REDIS_ERR_EOF 3 /* eof */ #define REDIS_ERR_PROTOCOL 4 /* protocol error */ +#define REDIS_ERR_OTHER 2 /* something else */ /* Connection type can be blocking or non-blocking and is set in the * least significant bit of the flags field in redisContext. */ |