X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fprotocol%2Fascii_handler.c;h=465b73969766432963007dfabe7ea9e4e42b2c43;hb=c4dbc7e56b01545e25bc95ba122c79d4a2631a99;hp=802b0859653351647b2ab2284ea21b1a1b3296c4;hpb=9bcd450682e20f0d704d86948bbb0880e414dfb4;p=awesomized%2Flibmemcached diff --git a/libmemcached/protocol/ascii_handler.c b/libmemcached/protocol/ascii_handler.c index 802b0859..465b7396 100644 --- a/libmemcached/protocol/ascii_handler.c +++ b/libmemcached/protocol/ascii_handler.c @@ -34,7 +34,7 @@ static uint16_t parse_ascii_key(char **start) if (len == 0 || len > 240 || (*c != '\0' && *c != '\r' && iscntrl(*c))) { - return EXIT_SUCCESS; + return 0; } return len; @@ -558,7 +558,7 @@ static inline int process_storage_command(memcached_protocol_client_st *client, { /* Keep on reading */ recover_tokenize_command(start, *end); - return EXIT_FAILURE; + return 1; } void *data= (*end) + 1; @@ -658,7 +658,7 @@ static inline int process_storage_command(memcached_protocol_client_st *client, *end += nbytes + 2; - return EXIT_SUCCESS; + return 0; } static int process_cas_command(memcached_protocol_client_st *client,