ICC fixes.
[awesomized/libmemcached] / tests / server.c
index e06fbd57e0d66cab5f91544c0b3080f5deb33bee..68b3d80146416ede910f85a8c963369dc09d8d98 100644 (file)
@@ -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 <stdio.h>
 #include <stdlib.h>
@@ -50,7 +61,7 @@ void server_startup(server_startup_st *construct)
           {
             if (fgets(buffer, sizeof(buffer), fp) != NULL)
             { 
-              pid_t pid = (pid_t)atol(buffer);
+              pid_t pid= (pid_t)atoi(buffer);
               if (pid != 0) 
                 kill(pid, SIGTERM);
             }
@@ -88,7 +99,7 @@ void server_startup(server_startup_st *construct)
 
   for (x= 0; x < memcached_server_list_count(construct->servers); x++)
   {
-    printf("\t%s : %u\n", construct->servers[x].hostname, construct->servers[x].port);
+    printf("\t%s : %d\n", construct->servers[x].hostname, construct->servers[x].port);
     assert(construct->servers[x].fd == -1);
     assert(construct->servers[x].cursor_active == 0);
   }