X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached-1.0%2Freturn.h;h=e2b4104cda6c526249cb88abab790e35392bd611;hb=1be11f8bb8fdf368985d9e1c900b250541dc4791;hp=65dc63af5eb02cb7783200287f9cb5316dc06a86;hpb=7f3f3d165c47d2722cc7a57b618cee7ed14557b3;p=awesomized%2Flibmemcached diff --git a/libmemcached-1.0/return.h b/libmemcached-1.0/return.h index 65dc63af..e2b4104c 100644 --- a/libmemcached-1.0/return.h +++ b/libmemcached-1.0/return.h @@ -50,19 +50,22 @@ static inline bool memcached_success(memcached_return_t rc) static inline bool memcached_failed(memcached_return_t rc) { - return (rc != MEMCACHED_SUCCESS && + return (rc != MEMCACHED_AUTH_CONTINUE && + rc != MEMCACHED_BUFFERED && + rc != MEMCACHED_DELETED && rc != MEMCACHED_END && + rc != MEMCACHED_ITEM && + rc != MEMCACHED_STAT && rc != MEMCACHED_STORED && - rc != MEMCACHED_STAT && - rc != MEMCACHED_DELETED && - rc != MEMCACHED_BUFFERED && + rc != MEMCACHED_SUCCESS && rc != MEMCACHED_VALUE); } static inline bool memcached_fatal(memcached_return_t rc) { - return ( + return (rc != MEMCACHED_AUTH_CONTINUE && rc != MEMCACHED_BUFFERED && + rc != MEMCACHED_CLIENT_ERROR && rc != MEMCACHED_DATA_EXISTS && rc != MEMCACHED_DELETED && rc != MEMCACHED_E2BIG &&