Indentation.
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 2 Jun 2003 13:13:59 +0000 (13:13 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 2 Jun 2003 13:13:59 +0000 (13:13 +0000)
index/zebrash.c

index e1532f9..2bf9c13 100644 (file)
@@ -1,5 +1,5 @@
 /* zebrash.c - command-line interface to zebra API 
- *  $Id: zebrash.c,v 1.7 2003-03-05 16:44:02 adam Exp $
+ *  $Id: zebrash.c,v 1.8 2003-06-02 13:13:59 adam Exp $
  *
  * Copyrigth 2003 Index Data Aps
  *
@@ -32,7 +32,7 @@
 
 ZebraService zs=0;  /* our global handle to zebra */
 ZebraHandle  zh=0;  /* the current session */
-                  /* time being, only one session works */
+/* time being, only one session works */
 
 /**************************************
  * Help functions
@@ -43,128 +43,128 @@ static int split_args( char *line, char** args )
 { /* splits line into individual null-terminated strings, 
    * returns pointers to them in args */
   /* FIXME - do we need to handle quoted args ?? */
-  char *p=line;
-  int i=0;
-  int n=0;
-  args[0]=0; /* by default */
-  while (*p==' ' || *p=='\t' || *p=='\n')
-    p++;
-  while (*p)
-  {
+    char *p=line;
+    int i=0;
+    int n=0;
+    args[0]=0; /* by default */
     while (*p==' ' || *p=='\t' || *p=='\n')
-      p++;
-    if (*p=='#')  /* skip comments */
-      break;  
-    args[i++]=p;
-    args[i]=0;
-    while (*p && *p!=' ' && *p!='\t' && *p!='\n' && *p!='#')
-      p++;
-    *p++='\0';
-  }
-  n=i;
-  while (n<MAX_NO_ARGS)
-    args[n++]=0;
-  return i;
+       p++;
+    while (*p)
+    {
+       while (*p==' ' || *p=='\t' || *p=='\n')
+           p++;
+       if (*p=='#')  /* skip comments */
+           break;  
+       args[i++]=p;
+       args[i]=0;
+       while (*p && *p!=' ' && *p!='\t' && *p!='\n' && *p!='#')
+           p++;
+       *p++='\0';
+    }
+    n=i;
+    while (n<MAX_NO_ARGS)
+       args[n++]=0;
+    return i;
 }
 
 static char *defarg( char *arg, char *def )
 {
-  if (!arg)
-    return def;
-  if (!*arg)
-    return def;
-  return arg;
+    if (!arg)
+       return def;
+    if (!*arg)
+       return def;
+    return arg;
 }
 static int defargint( char *arg, int def )
 {
-  int v=def;
-  char *a=defarg(arg,0);
-  if (a)
-    sscanf(a," %i", &v);
-  return v;
+    int v=def;
+    char *a=defarg(arg,0);
+    if (a)
+       sscanf(a," %i", &v);
+    return v;
 }
 
 int onecommand( char *line, char *outbuff);
  
- /**************************************
+/**************************************
  * Simple support commands
  */
 
- int cmd_echo( char *args[], char *outbuff)
- {
-   strcpy(outbuff, args[0]);
-   return 0;
- }
+int cmd_echo( char *args[], char *outbuff)
+{
+    strcpy(outbuff, args[0]);
+    return 0;
+}
  
- int cmd_quit( char *args[], char *outbuff)
- {
-   strcpy(outbuff, "bye");
-   return -99; /* special stop signal */
- }
+int cmd_quit( char *args[], char *outbuff)
+{
+    strcpy(outbuff, "bye");
+    return -99; /* special stop signal */
+}
 
 /**************************************
  * Tests for starting and stopping zebra, etc
  */
  
- static int cmd_help( char *args[], char *outbuff); 
+static int cmd_help( char *args[], char *outbuff); 
  
- static int cmd_zebra_start( char *args[], char *outbuff)
- {
-   char *conf=args[1];
-   if (!conf || !*conf) {
-     strcat(outbuff,"no config file specified, using "
-                     DEFAULTCONFIG "\n" );
-     conf=DEFAULTCONFIG;
-   }
-   zs=zebra_start(conf);
-   if (!zs) {
-     strcpy(outbuff, "zebra_start failed" );
-     return 2;
-   }
-   return 0; /* ok */
- }
+static int cmd_zebra_start( char *args[], char *outbuff)
+{
+    char *conf=args[1];
+    if (!conf || !*conf) {
+       strcat(outbuff,"no config file specified, using "
+              DEFAULTCONFIG "\n" );
+       conf=DEFAULTCONFIG;
+    }
+    zs=zebra_start(conf);
+    if (!zs) {
+       strcpy(outbuff, "zebra_start failed" );
+       return 2;
+    }
+    return 0; /* ok */
+}
  
- static int cmd_zebra_stop( char *args[], char *outbuff)
- {
-   if (!zs)
-     strcat(outbuff,"zebra seems not to have been started, "
-                    "stopping anyway\n");
-   zebra_stop(zs);
-   zs=0;
-   return 0; /* ok */
- }
+static int cmd_zebra_stop( char *args[], char *outbuff)
+{
+    if (!zs)
+       strcat(outbuff,"zebra seems not to have been started, "
+              "stopping anyway\n");
+    zebra_stop(zs);
+    zs=0;
+    return 0; /* ok */
+}
 
 static int cmd_zebra_open( char *args[], char *outbuff)
 {
-  if (!zs)
-    strcat(outbuff,"zebra seems not to have been started, "
-                   "trying anyway\n");
-  zh=zebra_open(zs);
-  return 0; /* ok */
+    if (!zs)
+       strcat(outbuff,"zebra seems not to have been started, "
+              "trying anyway\n");
+    zh=zebra_open(zs);
+    return 0; /* ok */
 }
 
 static int cmd_zebra_close( char *args[], char *outbuff)
 {
-  if (!zh)
-    strcat(outbuff,"Seems like you have not called zebra_open,"
-                   "trying anyway\n");
-  zebra_close(zh);
-  return 0; /* ok */
+    if (!zh)
+       strcat(outbuff,"Seems like you have not called zebra_open,"
+              "trying anyway\n");
+    zebra_close(zh);
+    return 0; /* ok */
 }
 
 static int cmd_quickstart( char *args[], char *outbuff)
 {
-  char tmp[128];
-  onecommand("yaz_log_file zebrash.log",outbuff);
-  onecommand("yaz_log_prefix ZebraSh", outbuff);
-  sprintf(tmp, "yaz_log_level 0x%x", LOG_DEFAULT_LEVEL | LOG_APP);
-  onecommand(tmp,outbuff);
-  logf(LOG_APP,"quickstart");
-  onecommand("zebra_start",outbuff);
-  onecommand("zebra_open",outbuff);
-  onecommand("select_database Default",outbuff);
-  strcat(outbuff,"ok\n");
-  return 0;
+    char tmp[128];
+    onecommand("yaz_log_file zebrash.log",outbuff);
+    onecommand("yaz_log_prefix ZebraSh", outbuff);
+    sprintf(tmp, "yaz_log_level 0x%x", LOG_DEFAULT_LEVEL | LOG_APP);
+    onecommand(tmp,outbuff);
+    logf(LOG_APP,"quickstart");
+    onecommand("zebra_start",outbuff);
+    onecommand("zebra_open",outbuff);
+    onecommand("select_database Default",outbuff);
+    strcat(outbuff,"ok\n");
+    return 0;
 }
 
 /**************************************
@@ -173,50 +173,50 @@ static int cmd_quickstart( char *args[], char *outbuff)
 
 static int cmd_yaz_log_file( char *args[], char *outbuff)
 {
-  char *fn = defarg(args[1],0);
-  char tmp[255];
-  sprintf(tmp, "sending yaz-log to %s\n",fn);
-  strcat(outbuff, tmp);
-  yaz_log_init_file(fn);
-  return 0; /* ok */
+    char *fn = defarg(args[1],0);
+    char tmp[255];
+    sprintf(tmp, "sending yaz-log to %s\n",fn);
+    strcat(outbuff, tmp);
+    yaz_log_init_file(fn);
+    return 0; /* ok */
 }
 
 static int cmd_yaz_log_level( char *args[], char *outbuff)
 {
-  int  lev = defargint(args[1],LOG_DEFAULT_LEVEL);
-  char tmp[255];
-  sprintf(tmp, "setting yaz-log to level %d (ox%x)\n",lev,lev);
-  strcat(outbuff, tmp);
-  yaz_log_init_level(lev);
-  return 0; /* ok */
+    int  lev = defargint(args[1],LOG_DEFAULT_LEVEL);
+    char tmp[255];
+    sprintf(tmp, "setting yaz-log to level %d (ox%x)\n",lev,lev);
+    strcat(outbuff, tmp);
+    yaz_log_init_level(lev);
+    return 0; /* ok */
 }
 
 static int cmd_yaz_log_prefix( char *args[], char *outbuff)
 {
-  char *pref = defarg(args[1],"ZebraSh");
-  char tmp[255];
-  sprintf(tmp, "setting yaz-log prefix to %s\n",pref);
-  strcat(outbuff, tmp);
-  yaz_log_init_prefix(pref);
-  return 0; /* ok */
+    char *pref = defarg(args[1],"ZebraSh");
+    char tmp[255];
+    sprintf(tmp, "setting yaz-log prefix to %s\n",pref);
+    strcat(outbuff, tmp);
+    yaz_log_init_prefix(pref);
+    return 0; /* ok */
 }
 
 static int cmd_logf( char *args[], char *outbuff)
 {
-  int lev = defargint(args[1],0);
-  char tmp[MAX_OUT_BUFF]="";
-  int i=1;
-  if (lev)
-    i=2;
-  else
-    lev=LOG_LOG; /* this is in the default set!*/
-  while (args[i])
-  {
-    strcat(tmp, args[i++]);
-    strcat(tmp, " ");
-  }
-  logf(lev,tmp);
-  return 0; /* ok */
+    int lev = defargint(args[1],0);
+    char tmp[MAX_OUT_BUFF]="";
+    int i=1;
+    if (lev)
+       i=2;
+    else
+       lev=LOG_LOG; /* this is in the default set!*/
+    while (args[i])
+    {
+       strcat(tmp, args[i++]);
+       strcat(tmp, " ");
+    }
+    logf(lev,tmp);
+    return 0; /* ok */
 }
  
 /****************
@@ -224,37 +224,37 @@ static int cmd_logf( char *args[], char *outbuff)
  */
 static int cmd_err ( char *args[], char *outbuff)
 {
-  char tmp[MAX_OUT_BUFF];
-  sprintf(tmp, "errCode: %d \nerrStr:  %s\nerrAdd:  %s \n",
-    zebra_errCode (zh),
-    zebra_errString (zh),  
-    zebra_errAdd (zh) );
-  strcat(outbuff, tmp);
-  return 0; /* ok */
+    char tmp[MAX_OUT_BUFF];
+    sprintf(tmp, "errCode: %d \nerrStr:  %s\nerrAdd:  %s \n",
+           zebra_errCode (zh),
+           zebra_errString (zh),  
+           zebra_errAdd (zh) );
+    strcat(outbuff, tmp);
+    return 0; /* ok */
 }
 static int cmd_errcode ( char *args[], char *outbuff)
 {
-  char tmp[MAX_OUT_BUFF];
-  sprintf(tmp, "errCode: %d \n",
-    zebra_errCode (zh));
-  strcat(outbuff, tmp);
-  return 0; /* ok */
+    char tmp[MAX_OUT_BUFF];
+    sprintf(tmp, "errCode: %d \n",
+           zebra_errCode (zh));
+    strcat(outbuff, tmp);
+    return 0; /* ok */
 }
 static int cmd_errstr ( char *args[], char *outbuff)
 {
-  char tmp[MAX_OUT_BUFF];
-  sprintf(tmp, "errStr:  %s\n",
-    zebra_errString (zh));
-  strcat(outbuff, tmp);
-  return 0; /* ok */
+    char tmp[MAX_OUT_BUFF];
+    sprintf(tmp, "errStr:  %s\n",
+           zebra_errString (zh));
+    strcat(outbuff, tmp);
+    return 0; /* ok */
 }
 static int cmd_erradd ( char *args[], char *outbuff)
 {
-  char tmp[MAX_OUT_BUFF];
-  sprintf(tmp, "errAdd:  %s \n",
-    zebra_errAdd (zh) ); 
-  strcat(outbuff, tmp);
-  return 0; /* ok */
+    char tmp[MAX_OUT_BUFF];
+    sprintf(tmp, "errAdd:  %s \n",
+           zebra_errAdd (zh) ); 
+    strcat(outbuff, tmp);
+    return 0; /* ok */
 }
 
 /**************************************
@@ -263,16 +263,16 @@ static int cmd_erradd ( char *args[], char *outbuff)
 
 static int cmd_init ( char *args[], char *outbuff)
 {
-  zebra_init(zh);
-  return 0; /* ok */
+    zebra_init(zh);
+    return 0; /* ok */
 }
 
 static int cmd_select_database ( char *args[], char *outbuff)
 {
-  char *db=args[1];
-  if (!db)
-    db="Default";
-  return zebra_select_database(zh, args[1]);
+    char *db=args[1];
+    if (!db)
+       db="Default";
+    return zebra_select_database(zh, args[1]);
 }
  
 /**************************************
@@ -281,193 +281,193 @@ static int cmd_select_database ( char *args[], char *outbuff)
 
 struct cmdstruct
 {
-  char * cmd;
-  char * args;
-  char * explanation;
-  int (*testfunc)(char *args[], char *outbuff);
+    char * cmd;
+    char * args;
+    char * explanation;
+    int (*testfunc)(char *args[], char *outbuff);
 } ;
 
  
 struct cmdstruct cmds[] = {
-  /* special cases:
-   *   if text is 0, does not list the command
-   *   if cmd is "", adds the args (and newline) in command listing
-   */
-  { "", "Starting and stopping:", "", 0 },
-  { "zebra_start", 
-    "[configfile]", 
-    "starts the zebra service. You need to call this first\n"
-    "if no configfile is given, assumes " DEFAULTCONFIG, 
-    cmd_zebra_start },
-  { "zebra_stop",   "", 
-    "stops the zebra service", 
-    cmd_zebra_stop },
-  { "zebra_open", "",  
-    "starts a zebra session. Once you have called zebra_start\n"
-    "you can call zebra_open to start working", 
-    cmd_zebra_open },
-  { "zebra_close", "", 
-    "closes a zebra session", 
-    cmd_zebra_close }, 
-  { "quickstart", "[configfile]", 
-    "Does a zebra_start, zebra_open, and sets up the log", 
-    cmd_quickstart }, 
+    /* special cases:
+     *   if text is 0, does not list the command
+     *   if cmd is "", adds the args (and newline) in command listing
+     */
+    { "", "Starting and stopping:", "", 0 },
+    { "zebra_start", 
+      "[configfile]", 
+      "starts the zebra service. You need to call this first\n"
+      "if no configfile is given, assumes " DEFAULTCONFIG, 
+      cmd_zebra_start },
+    { "zebra_stop",   "", 
+      "stops the zebra service", 
+      cmd_zebra_stop },
+    { "zebra_open", "",  
+      "starts a zebra session. Once you have called zebra_start\n"
+      "you can call zebra_open to start working", 
+      cmd_zebra_open },
+    { "zebra_close", "", 
+      "closes a zebra session", 
+      cmd_zebra_close }, 
+    { "quickstart", "[configfile]", 
+      "Does a zebra_start, zebra_open, and sets up the log", 
+      cmd_quickstart }, 
   
-  { "", "Log file:","", 0},  
-  { "yaz_log_file", 
-    "[filename]",
-    "Directs the log to filename (or stderr)",
-    cmd_yaz_log_file },
-  { "yaz_log_level", 
-    "[level]",
-    "Sets the logging level (or returns to default)",
-    cmd_yaz_log_level },
-  { "yaz_log_prefix", 
-    "[prefix]",
-    "Sets the log prefix",
-    cmd_yaz_log_prefix},    
-  { "logf", 
-    "[level] text...",
-    "writes an entry in the log",
-    cmd_logf},    
+    { "", "Log file:","", 0},  
+    { "yaz_log_file", 
+      "[filename]",
+      "Directs the log to filename (or stderr)",
+      cmd_yaz_log_file },
+    { "yaz_log_level", 
+      "[level]",
+      "Sets the logging level (or returns to default)",
+      cmd_yaz_log_level },
+    { "yaz_log_prefix", 
+      "[prefix]",
+      "Sets the log prefix",
+      cmd_yaz_log_prefix},    
+    { "logf", 
+      "[level] text...",
+      "writes an entry in the log",
+      cmd_logf},    
 
-  { "", "Error handling:","", 0},
-  { "err",  "",
-    "Displays zebra's error status (code, str, add)",
-    cmd_err},    
-  { "errcode",  "",
-    "Displays zebra's error code",
-    cmd_errcode},    
-  { "errstr",  "",
-    "Displays zebra's error string",
-    cmd_errstr},    
-  { "erradd",  "",
-    "Displays zebra's additional error message",
-    cmd_erradd},    
+    { "", "Error handling:","", 0},
+    { "err",  "",
+      "Displays zebra's error status (code, str, add)",
+      cmd_err},    
+    { "errcode",  "",
+      "Displays zebra's error code",
+      cmd_errcode},    
+    { "errstr",  "",
+      "Displays zebra's error string",
+      cmd_errstr},    
+    { "erradd",  "",
+      "Displays zebra's additional error message",
+      cmd_erradd},    
   
-  { "", "Admin:","", 0}, 
-  { "init",  "",
-    "Initializes the zebra database, destroying all data in it",
-    cmd_init},    
-  { "select_database",  "basename",
-    "Selects a database",
-    cmd_select_database},    
+    { "", "Admin:","", 0}, 
+    { "init",  "",
+      "Initializes the zebra database, destroying all data in it",
+      cmd_init},    
+    { "select_database",  "basename",
+      "Selects a database",
+      cmd_select_database},    
   
-  { "", "Misc:","", 0}, 
-  { "echo", "string", 
-    "ouputs the string", 
-    cmd_echo },
-  { "quit", "", 
-    "exits the program", 
-    cmd_quit },
-  { "help", "[command]", 
-    "Gives help on command, or lists them all", 
-    cmd_help },
-  { "", "help [command] gives more info on command", "",0 },   
+    { "", "Misc:","", 0}, 
+    { "echo", "string", 
+      "ouputs the string", 
+      cmd_echo },
+    { "quit", "", 
+      "exits the program", 
+      cmd_quit },
+    { "help", "[command]", 
+      "Gives help on command, or lists them all", 
+      cmd_help },
+    { "", "help [command] gives more info on command", "",0 },   
   
-  {0,0,0,0} /* end marker */
+    {0,0,0,0} /* end marker */
 };
  
 int onecommand( char *line, char *outbuff)
 {
-  int i;
-  char *args[MAX_NO_ARGS];
-  int n;
-  char argbuf[MAX_ARG_LEN];
-  logf(LOG_APP,"%s",line);
-  strncpy(argbuf,line, MAX_ARG_LEN-1);
-  argbuf[MAX_ARG_LEN-1]='\0'; /* just to be sure */
-  n=split_args(argbuf, args);
-  if (0==n)
-    return -1; /* no command on line, too bad */
-  for (i=0;cmds[i].cmd;i++)
-    if (0==strcmp(cmds[i].cmd, args[0])) 
-    {
-      if (n>1)
-        args[0]= line + (args[1]-argbuf); /* rest of the line */
-      else
-        args[0]=""; 
-      return ((cmds[i].testfunc)(args,outbuff));
-    }
-  strcat(outbuff, "Unknown command '");
-  strcat(outbuff,args[0] );
-  strcat(outbuff,"'. Try help");
-  logf(LOG_APP,"Unknown command");
-  return -2; 
+    int i;
+    char *args[MAX_NO_ARGS];
+    int n;
+    char argbuf[MAX_ARG_LEN];
+    logf(LOG_APP,"%s",line);
+    strncpy(argbuf,line, MAX_ARG_LEN-1);
+    argbuf[MAX_ARG_LEN-1]='\0'; /* just to be sure */
+    n=split_args(argbuf, args);
+    if (0==n)
+       return -1; /* no command on line, too bad */
+    for (i=0;cmds[i].cmd;i++)
+       if (0==strcmp(cmds[i].cmd, args[0])) 
+       {
+           if (n>1)
+               args[0]= line + (args[1]-argbuf); /* rest of the line */
+           else
+               args[0]=""; 
+           return ((cmds[i].testfunc)(args,outbuff));
+       }
+    strcat(outbuff, "Unknown command '");
+    strcat(outbuff,args[0] );
+    strcat(outbuff,"'. Try help");
+    logf(LOG_APP,"Unknown command");
+    return -2; 
 }
  
- static int cmd_help( char *args[], char *outbuff)
- { 
-  int i;
-  char tmp[MAX_ARG_LEN];
-  if (args[1]) 
-  { /* help for a single command */ 
-    for (i=0;cmds[i].cmd;i++)
-      if (0==strcmp(cmds[i].cmd, args[1])) 
-      {
-        strcat(outbuff,cmds[i].cmd);
-        strcat(outbuff,"  ");
-        strcat(outbuff,cmds[i].args);
-        strcat(outbuff,"\n");
-        strcat(outbuff,cmds[i].explanation);
-        strcat(outbuff,"\n");
-        return 0;
-      }
-    strcat(outbuff, "Unknown command ");
-    strcat(outbuff, args[1] );
-  }
-  else 
-  { /* list all commands */
-    strcpy(tmp,"    ");
-    for (i=0;cmds[i].cmd;i++)
-      if (cmds[i].explanation)
-      {
-       /* sprintf(tmp, "%s %s %s\n",
-          cmds[i].cmd, cmds[i].args, cmds[i].explanation);
-        */
-        strcat(tmp, cmds[i].cmd);
-        strcat(tmp,"  ");
-        if (!*cmds[i].cmd)
-        {
-          strcat(outbuff, tmp);
-          strcat(outbuff,"\n");
-          strcpy(tmp,"    ");
-          if (*cmds[i].args)
-          {
-            strcat(outbuff, cmds[i].args);
-            strcat(outbuff,"\n");
-          }
-        }
-        if (strlen(tmp)>50)
-        {
-          strcat(outbuff,tmp);
-          strcat(outbuff,"\n");
-          strcpy(tmp,"    ");
-        }
-      }
-    strcat(outbuff,tmp);
-  }
-  return 0;
+static int cmd_help( char *args[], char *outbuff)
+{ 
+    int i;
+    char tmp[MAX_ARG_LEN];
+    if (args[1]) 
+    { /* help for a single command */ 
+       for (i=0;cmds[i].cmd;i++)
+           if (0==strcmp(cmds[i].cmd, args[1])) 
+           {
+               strcat(outbuff,cmds[i].cmd);
+               strcat(outbuff,"  ");
+               strcat(outbuff,cmds[i].args);
+               strcat(outbuff,"\n");
+               strcat(outbuff,cmds[i].explanation);
+               strcat(outbuff,"\n");
+               return 0;
+           }
+       strcat(outbuff, "Unknown command ");
+       strcat(outbuff, args[1] );
+    }
+    else 
+    { /* list all commands */
+       strcpy(tmp,"    ");
+       for (i=0;cmds[i].cmd;i++)
+           if (cmds[i].explanation)
+           {
+               /* sprintf(tmp, "%s %s %s\n",
+                  cmds[i].cmd, cmds[i].args, cmds[i].explanation);
+               */
+               strcat(tmp, cmds[i].cmd);
+               strcat(tmp,"  ");
+               if (!*cmds[i].cmd)
+               {
+                   strcat(outbuff, tmp);
+                   strcat(outbuff,"\n");
+                   strcpy(tmp,"    ");
+                   if (*cmds[i].args)
+                   {
+                       strcat(outbuff, cmds[i].args);
+                       strcat(outbuff,"\n");
+                   }
+               }
+               if (strlen(tmp)>50)
+               {
+                   strcat(outbuff,tmp);
+                   strcat(outbuff,"\n");
+                   strcpy(tmp,"    ");
+               }
+           }
+       strcat(outbuff,tmp);
+    }
+    return 0;
 }
  
 /* If Zebra reports an error after an operation,
  * append it to the outbuff and log it */
 static void Zerrors ( char *outbuff)
 {
-  int ec;
-  char tmp[MAX_OUT_BUFF];
-  if (!zh)
-    return ;
-  ec=zebra_errCode (zh);
-  if (ec)
-  {
-    sprintf(tmp, "Zebra error %d: %s, (%s)",
-      ec, zebra_errString (zh),
-      zebra_errAdd (zh) );
-    strcat(outbuff, tmp);
-    strcat(outbuff, "\n");
-    logf(LOG_APP, tmp);
-  }
+    int ec;
+    char tmp[MAX_OUT_BUFF];
+    if (!zh)
+       return ;
+    ec=zebra_errCode (zh);
+    if (ec)
+    {
+       sprintf(tmp, "Zebra error %d: %s, (%s)",
+               ec, zebra_errString (zh),
+               zebra_errAdd (zh) );
+       strcat(outbuff, tmp);
+       strcat(outbuff, "\n");
+       logf(LOG_APP, tmp);
+    }
 }
   
 /************************************** 
@@ -476,48 +476,48 @@ static void Zerrors ( char *outbuff)
  
 void shell()
 {
-  int rc=0;
-  char tmp[MAX_ARG_LEN];
-  while (rc!=-99)
-  {
-    char buf[MAX_ARG_LEN];
-    char outbuff[MAX_OUT_BUFF];
+    int rc=0;
+    char tmp[MAX_ARG_LEN];
+    while (rc!=-99)
+    {
+       char buf[MAX_ARG_LEN];
+       char outbuff[MAX_OUT_BUFF];
 #if HAVE_READLINE_READLINE_H
-    char* line_in;
-         line_in=readline(PROMPT);
-         if (!line_in)
+       char* line_in;
+       line_in=readline(PROMPT);
+       if (!line_in)
            break;
 #if HAVE_READLINE_HISTORY_H
-         if (*line_in)
+       if (*line_in)
            add_history(line_in);
 #endif
-         if(strlen(line_in) > MAX_ARG_LEN-1) {
+       if(strlen(line_in) > MAX_ARG_LEN-1) {
            fprintf(stderr,"Input line too long\n");
            break;
-         };
-         strcpy(buf,line_in);
-         free (line_in);
+       };
+       strcpy(buf,line_in);
+       free (line_in);
 #else    
-         printf (PROMPT); 
-         fflush (stdout);
-         if (!fgets (buf, MAX_ARG_LEN-1, stdin))
+       printf (PROMPT); 
+       fflush (stdout);
+       if (!fgets (buf, MAX_ARG_LEN-1, stdin))
            break; 
 #endif 
-    outbuff[0]='\0';
-    rc=onecommand(buf, outbuff);
-    if (rc==0)
-    {
-      strcat(outbuff, "OK\n");
-      logf(LOG_APP, "OK");
-    }
-    else if (rc > 0)
-    {
-      sprintf(tmp, "command returned %d\n",rc);
-      strcat(outbuff,tmp);
-    } 
-    Zerrors(outbuff);
+       outbuff[0]='\0';
+       rc=onecommand(buf, outbuff);
+       if (rc==0)
+       {
+           strcat(outbuff, "OK\n");
+           logf(LOG_APP, "OK");
+       }
+       else if (rc > 0)
+       {
+           sprintf(tmp, "command returned %d\n",rc);
+           strcat(outbuff,tmp);
+       } 
+       Zerrors(outbuff);
        printf("%s\n", outbuff);
-  } /* while */
+    } /* while */
 } /* shell() */
   
  
@@ -527,6 +527,6 @@ void shell()
  
 int main (int argc, char ** args)
 {
-  shell();
-  return 0;
+    shell();
+    return 0;
 } /* main */