Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/lavabit/magma.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLadar Levison <ladar@lavabit.com>2019-01-28 18:37:13 +0300
committerLadar Levison <ladar@lavabit.com>2019-01-28 18:37:13 +0300
commit56e9a31d1b8915552e3279924c5af1919141e660 (patch)
treeec60fc67d675af0e7b06120b372919edcbe59973 /lib
parent68b59ae5e78ad306052ec4438c60d39ade6c48ac (diff)
Removing an errant comment.
Diffstat (limited to 'lib')
-rw-r--r--lib/patches/memcached/1.0.18_fix_dump_return_code.patch11
1 files changed, 5 insertions, 6 deletions
diff --git a/lib/patches/memcached/1.0.18_fix_dump_return_code.patch b/lib/patches/memcached/1.0.18_fix_dump_return_code.patch
index d76fb15e..3ae0b6b3 100644
--- a/lib/patches/memcached/1.0.18_fix_dump_return_code.patch
+++ b/lib/patches/memcached/1.0.18_fix_dump_return_code.patch
@@ -1,5 +1,5 @@
diff --git a/libmemcached/dump.cc b/libmemcached/dump.cc
-index 8ddb2ee..fbd4448 100644
+index 8ddb2ee..864374d 100644
--- a/libmemcached/dump.cc
+++ b/libmemcached/dump.cc
@@ -1,5 +1,5 @@
@@ -9,13 +9,12 @@ index 8ddb2ee..fbd4448 100644
* Libmemcached library
*
* Copyright (C) 2011 Data Differential, http://datadifferential.com/
-@@ -46,14 +46,16 @@
+@@ -46,14 +46,15 @@
static memcached_return_t ascii_dump(Memcached *memc, memcached_dump_fn *callback, void *context, uint32_t number_of_callbacks)
{
- /* MAX_NUMBER_OF_SLAB_CLASSES is defined to 200 in Memcached 1.4.10 */
+
-+//` if memc->server_info.version
+ /* MAX_NUMBER_OF_SLAB_CLASSES is defined as 200 for memcached versions up to 1.4.22 and redefined to 64 above that.*/
for (uint32_t x= 0; x < 200; x++)
{
@@ -28,7 +27,7 @@ index 8ddb2ee..fbd4448 100644
memcached_literal_param("snprintf(MEMCACHED_DEFAULT_COMMAND_SIZE)"));
}
-@@ -70,22 +72,34 @@ static memcached_return_t ascii_dump(Memcached *memc, memcached_dump_fn *callbac
+@@ -70,22 +71,34 @@ static memcached_return_t ascii_dump(Memcached *memc, memcached_dump_fn *callbac
{
memcached_instance_st* instance= memcached_instance_fetch(memc, server_key);
@@ -70,7 +69,7 @@ index 8ddb2ee..fbd4448 100644
memcached_return_t response_rc= memcached_response(instance, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, NULL);
if (response_rc == MEMCACHED_ITEM)
{
-@@ -111,18 +125,18 @@ static memcached_return_t ascii_dump(Memcached *memc, memcached_dump_fn *callbac
+@@ -111,18 +124,18 @@ static memcached_return_t ascii_dump(Memcached *memc, memcached_dump_fn *callbac
}
}
else if (response_rc == MEMCACHED_END)
@@ -96,7 +95,7 @@ index 8ddb2ee..fbd4448 100644
assert(response_rc == MEMCACHED_SUCCESS); // Just fail
return response_rc;
}
-@@ -146,7 +160,7 @@ memcached_return_t memcached_dump(memcached_st *shell, memcached_dump_fn *callba
+@@ -146,7 +159,7 @@ memcached_return_t memcached_dump(memcached_st *shell, memcached_dump_fn *callba
return rc;
}