Bump copyright year
[idzebra-moved-to-github.git] / test / api / test_zebra_fork.c
index 8efa4b6..d056442 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the Zebra server.
-   Copyright (C) 1994-2010 Index Data
+   Copyright (C) 2004-2013 Index Data
 
 Zebra is free software; you can redistribute it and/or modify it under
 the terms of the GNU General Public License as published by the Free
@@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #if HAVE_SYS_STAT_H
 #include <sys/stat.h>
 #endif
@@ -58,11 +61,11 @@ static void search_process(ZebraService zs, int iter)
     for (i = 0; i<iter; i++)
     {
        ZebraHandle zh = zebra_open(zs, 0);
-       zint hits;          
+       zint hits;
        ZEBRA_RES res = zebra_search_PQF(zh, "@attr 1=4 some", "default",
                                         &hits);
        YAZ_CHECK(res == ZEBRA_OK);
-       
+
        YAZ_CHECK(hits >= hits_max);
        if (hits < hits_max)
            printf("i=%d hits=%lld hits_max=%lld\n", i, hits, hits_max);
@@ -79,7 +82,7 @@ static pid_t fork_service(ZebraService zs, int iter,
     YAZ_CHECK(pid != -1);
     if (pid)
        return pid;
-    
+
     (*f)(zs, iter);
     YAZ_CHECK_TERM;
 }
@@ -88,7 +91,7 @@ static void tst(int argc, char **argv)
 {
     ZebraService zs;
     ZebraHandle zh;
-    
+
     mkdir("register", 0775);
     mkdir("shadow", 0775);