Beginnings of zebra_register_check
[idzebra-moved-to-github.git] / index / zebraidx.c
index eba671f..c411901 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of the Zebra server.
-   Copyright (C) 1995-2008 Index Data
+   Copyright (C) 1994-2010 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
@@ -177,6 +177,11 @@ int main(int argc, char **argv)
                 {
                     show_filters(zs);
                 }
+               else if (!strcmp(arg, "check"))
+               {
+                    if (zebra_register_check(zh) != ZEBRA_OK)
+                        yaz_log(YLOG_WARN, "register check failed");
+               }
                 else
                 {
                     yaz_log(YLOG_FATAL, "unknown command: %s", arg);
@@ -241,7 +246,7 @@ int main(int argc, char **argv)
             zebra_get_version(version_str, sys_str);
 
             printf("Zebra %s\n", version_str);
-           printf("(C) 1994-2009, Index Data ApS\n");
+           printf("(C) 1994-2010, Index Data ApS\n");
             printf("Zebra is free software, covered by the GNU General Public License, and you are\n");
             printf("welcome to change it and/or distribute copies of it under certain conditions.\n");
             printf("SHA1 ID: %s\n", sys_str);
@@ -293,6 +298,7 @@ int main(int argc, char **argv)
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab