X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fserver.c;h=cdd22dea85017037a14dff0c6b644f41f428a1b3;hb=58f976626a7636c7b2e87fca0674f709d34f33c0;hp=8679c6249a621a8ece2219bdf03a412897358308;hpb=259796df2149b11286d58158255f868cadb470bb;p=awesomized%2Flibmemcached diff --git a/tests/server.c b/tests/server.c index 8679c624..cdd22dea 100644 --- a/tests/server.c +++ b/tests/server.c @@ -1,10 +1,21 @@ +/* LibMemcached + * Copyright (C) 2006-2009 Brian Aker + * All rights reserved. + * + * Use and distribution licensed under the BSD license. See + * the COPYING file in the parent directory for full text. + * + * Summary: + * + */ + /* Startup, and shutdown the memcached servers. */ #define TEST_PORT_BASE MEMCACHED_DEFAULT_PORT+10 -#include "libmemcached/libmemcached_config.h" +#include "config.h" #include #include @@ -50,7 +61,7 @@ void server_startup(server_startup_st *construct) { if (fgets(buffer, sizeof(buffer), fp) != NULL) { - pid_t pid = atol(buffer); + pid_t pid = (pid_t)atol(buffer); if (pid != 0) kill(pid, SIGTERM); } @@ -84,7 +95,7 @@ void server_startup(server_startup_st *construct) assert(construct->servers); - srandom(time(NULL)); + srandom((unsigned int)time(NULL)); for (x= 0; x < memcached_server_list_count(construct->servers); x++) {