- 3.0.4 was generating bogus 'delete' commands in some cases; I noticed this when trying to use memcache as a session storage backend with Roundcube webmail - this update fixes this.
15 lines
415 B
Plaintext
15 lines
415 B
Plaintext
$OpenBSD: patch-memcache_binary_protocol_c,v 1.1 2012/04/16 17:44:38 sthen Exp $
|
|
--- memcache_binary_protocol.c.orig Mon Apr 11 05:56:53 2011
|
|
+++ memcache_binary_protocol.c Thu Apr 12 21:53:47 2012
|
|
@@ -24,8 +24,9 @@
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
-#include <arpa/inet.h>
|
|
+#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
+#include <arpa/inet.h>
|
|
#include "memcache_pool.h"
|
|
#include "ext/standard/php_smart_str.h"
|
|
|