Put local variables footer in all c, h files.
[idzebra-moved-to-github.git] / index / zebrash.c
index c9bbda4..e1f6ede 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: zebrash.c,v 1.34 2005-06-14 20:28:54 adam Exp $
+/* $Id: zebrash.c,v 1.37 2006-05-10 08:13:23 adam Exp $
    Copyright (C) 1995-2005
    Index Data ApS
 
@@ -193,7 +193,7 @@ static int cmd_zebra_open( char *args[], WRBUF outbuff)
     if (!zs)
        wrbuf_puts(outbuff,"zebra seems not to have been started, "
                   "trying anyway\n");
-    zh=zebra_open(zs);
+    zh = zebra_open(zs, 0);
     return 0; /* ok */
 }
 
@@ -743,7 +743,7 @@ static int cmd_help( char *args[], WRBUF outbuff)
  
 /* If Zebra reports an error after an operation,
  * append it to the outbuff and log it */
-static void Zerrors ( WRBUF outbuff)
+static void Zerrors (WRBUF outbuff)
 {
     int ec;
     if (!zh)
@@ -757,7 +757,6 @@ static void Zerrors ( WRBUF outbuff)
        wrbuf_printf(outbuff, "   Zebra error %d: %s, (%s)\n",
                     ec, zebra_errString (zh),
                     zebra_errAdd (zh) );
-       zebra_clearError(zh);
     }
 }
 
@@ -862,3 +861,11 @@ int main (int argc, char ** argv)
     shell();
     return 0;
 } /* main */
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+