Skip to content

Commit 9289da6

Browse files
author
Andrei Zmievski
committed
Restore the IGBINARY flag value.
This is needed for transparent upgrades.
1 parent ed350f8 commit 9289da6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

php_memcached.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
/* TODO
2020
* - set LIBKETAMA_COMPATIBLE as the default?
21-
* - add payload flag for IS_BOOL?
2221
* - add getVersion()
2322
*/
2423

@@ -68,8 +67,8 @@
6867
#define MEMC_VAL_COMPRESSED (1<<1)
6968
#define MEMC_VAL_IS_LONG (1<<2)
7069
#define MEMC_VAL_IS_DOUBLE (1<<3)
71-
#define MEMC_VAL_IS_BOOL (1<<4)
72-
#define MEMC_VAL_IGBINARY (1<<5)
70+
#define MEMC_VAL_IGBINARY (1<<4)
71+
#define MEMC_VAL_IS_BOOL (1<<5)
7372

7473
#define MEMC_COMPRESS_THRESHOLD 100
7574

0 commit comments

Comments
 (0)