X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached-1.0%2Freturn.h;h=781603b86e84ec8c8ac97983bba1d7e1e14ba762;hb=95474a1687017de0adb2c6ce57c1ab7c0704c5c6;hp=28b4a97d3f121adc6873f58a76a691e42ff6a585;hpb=2674b74b067e8578bf323445a88f46bb3fa18ffd;p=awesomized%2Flibmemcached diff --git a/libmemcached-1.0/return.h b/libmemcached-1.0/return.h index 28b4a97d..781603b8 100644 --- a/libmemcached-1.0/return.h +++ b/libmemcached-1.0/return.h @@ -61,12 +61,21 @@ static inline bool memcached_failed(memcached_return_t rc) static inline bool memcached_fatal(memcached_return_t rc) { - return (rc != MEMCACHED_SUCCESS && + return ( + rc != MEMCACHED_BUFFERED && + rc != MEMCACHED_CLIENT_ERROR && + rc != MEMCACHED_DATA_EXISTS && + rc != MEMCACHED_DELETED && + rc != MEMCACHED_E2BIG && rc != MEMCACHED_END && - rc != MEMCACHED_STORED && + rc != MEMCACHED_ITEM && + rc != MEMCACHED_ERROR && + rc != MEMCACHED_NOTFOUND && + rc != MEMCACHED_NOTSTORED && + rc != MEMCACHED_SERVER_MEMORY_ALLOCATION_FAILURE && rc != MEMCACHED_STAT && - rc != MEMCACHED_DELETED && - rc != MEMCACHED_BUFFERED && + rc != MEMCACHED_STORED && + rc != MEMCACHED_SUCCESS && rc != MEMCACHED_VALUE); }