Monotone-Parent: 3c7106a946b0d9786d46c4f0c0a7e5bc1e5f8684
Monotone-Revision: 57c10d31c6098096fecd1a8325950d007a357271

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-12-30T12:20:57
maint-2.0.2
Ludovic Marcotte 2011-12-30 12:20:57 +00:00
parent 516dcdb255
commit 50e107f1ca
2 changed files with 5 additions and 1 deletions

1
NEWS
View File

@ -7,6 +7,7 @@ New Features
Enhancements
- updated Ukrainian translation
- now possible to use memcached over a UNIX socket
Bug Fixes
- alarms for tasks now depend on the start date and instead of the due date

View File

@ -127,7 +127,10 @@ static memcached_st *handle = NULL;
servers
= memcached_servers_parse([memcachedServerName UTF8String]);
memcached_server_push(handle, servers);
if ([memcachedServerName hasPrefix:@"/"])
memcached_server_add_unix_socket(handle, [memcachedServerName UTF8String]);
else
memcached_server_push(handle, servers);
}
}
}