Add support for centos6 and Ubuntu quantal
[idzebra-moved-to-github.git] / index / zebraidx.c
index 48cd1fe..0ada26b 100644 (file)
@@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 */
 
+#if HAVE_CONFIG_H
+#include <config.h>
+#endif
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -59,7 +62,7 @@ int main(int argc, char **argv)
     char *database = 0;
     Res res = res_open(0, 0);
     Res default_res = res_open(0, 0);
-    
+
     int trans_started = 0;
 #ifndef WIN32
     char nbuf[100];
@@ -84,6 +87,7 @@ int main(int argc, char **argv)
         " drop <db>     Drop database <db>\n"
         " commit        Commit changes\n"
         " clean         Clean shadow files\n"
+        " check:mode    Check register; mode is one of: default, full, quick\n"
         "Options:\n"
        " -t <type>     Index files as <type> (grs or text).\n"
        " -c <config>   Read configuration file <config>.\n"
@@ -116,7 +120,7 @@ int main(int argc, char **argv)
                     {
                        yaz_log(YLOG_FATAL, "Cannot read config %s", config);
                         exit(1);
-                   }   
+                   }
                     zh = zebra_open(zs, 0);
                    zebra_shadow_enable(zh, enable_commit);
                 }
@@ -236,7 +240,7 @@ int main(int argc, char **argv)
                     const char *add = zebra_errAdd(zh);
                    yaz_log(YLOG_FATAL, "Operation failed: %s %s",
                             zebra_errString(zh), add ? add : "");
-                    
+
                     if (trans_started)
                         if (zebra_end_trans(zh) != ZEBRA_OK)
                             yaz_log(YLOG_WARN, "zebra_end_trans failed");