Fix sample PQF
[yaz-moved-to-github.git] / server / statserv.c
index 199c6f4..4e3db64 100644 (file)
@@ -6,7 +6,7 @@
  * NT threaded server code by
  *   Chas Woodfield, Fretwell Downing Informatics.
  *
- * $Id: statserv.c,v 1.96 2003-02-23 14:26:58 adam Exp $
+ * $Id: statserv.c,v 1.98 2003-03-03 19:57:35 adam Exp $
  */
 
 #include <stdio.h>
@@ -80,6 +80,8 @@ statserv_options_block control_block = {
     0                           /* SOAP handlers */
 };
 
+static int max_sessions = 0;
+
 /*
  * handle incoming connect requests.
  * The dynamic mode is a bit tricky mostly because we want to avoid
@@ -370,7 +372,6 @@ void sigterm(int sig)
 
 static void *new_session (void *vp);
 static int no_sessions = 0;
-static int max_sessions = 0;
 
 /* UNIX listener */
 static void listener(IOCHAN h, int event)
@@ -657,8 +658,7 @@ static int add_listener(char *where, int what)
     }
     if (cs_bind(l, ap, CS_SERVER) < 0)
     {
-       yaz_log(LOG_FATAL|LOG_ERRNO, "Failed to bind to %s",
-                where, errno);
+       yaz_log(LOG_FATAL|LOG_ERRNO, "Failed to bind to %s", where);
        cs_close (l);
        return -1;
     }