X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached_auto.c;h=084d7a381c37deb2d30c0d6371f7ced08b9604f0;hb=94cd1cbfb3fe6d0c446be9151ae9b15f775b6511;hp=c0c6269af7a71ce64f71d7c9e15a830fe9e1b0ed;hpb=acce29c292b435fef4fd486495dca7d653be2bf2;p=awesomized%2Flibmemcached diff --git a/libmemcached/memcached_auto.c b/libmemcached/memcached_auto.c index c0c6269a..084d7a38 100644 --- a/libmemcached/memcached_auto.c +++ b/libmemcached/memcached_auto.c @@ -63,7 +63,7 @@ static memcached_return memcached_auto(memcached_st *ptr, static memcached_return binary_incr_decr(memcached_st *ptr, uint8_t cmd, const char *key, size_t key_length, uint64_t offset, uint64_t initial, - time_t expiration, + uint32_t expiration, uint64_t *value) { unsigned int server_key; @@ -165,7 +165,8 @@ memcached_return memcached_increment_with_initial(memcached_st *ptr, LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_START(); if (ptr->flags & MEM_BINARY_PROTOCOL) rc= binary_incr_decr(ptr, PROTOCOL_BINARY_CMD_INCREMENT, key, - key_length, offset, initial, expiration, value); + key_length, offset, initial, (uint32_t)expiration, + value); else rc= MEMCACHED_PROTOCOL_ERROR; @@ -189,7 +190,8 @@ memcached_return memcached_decrement_with_initial(memcached_st *ptr, LIBMEMCACHED_MEMCACHED_DECREMENT_WITH_INITIAL_START(); if (ptr->flags & MEM_BINARY_PROTOCOL) rc= binary_incr_decr(ptr, PROTOCOL_BINARY_CMD_DECREMENT, key, - key_length, offset, initial, expiration, value); + key_length, offset, initial, (uint32_t)expiration, + value); else rc= MEMCACHED_PROTOCOL_ERROR;