Renamed 'update' command to 'dir'.
[idzebra-moved-to-github.git] / index / main.c
index ae3095e..6347230 100644 (file)
@@ -4,7 +4,13 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: main.c,v $
- * Revision 1.19  1995-11-25 10:24:06  adam
+ * Revision 1.21  1995-11-27 14:27:39  adam
+ * Renamed 'update' command to 'dir'.
+ *
+ * Revision 1.20  1995/11/27  13:58:53  adam
+ * New option -t. storeStore data implemented in server.
+ *
+ * Revision 1.19  1995/11/25  10:24:06  adam
  * More record fields - they are enumerated now.
  * New options: flagStoreData flagStoreKey.
  *
@@ -95,6 +101,7 @@ int main (int argc, char **argv)
     rGroup.fileMatch = NULL;
     rGroup.flagStoreData = -1;
     rGroup.flagStoreKeys = -1;
+    rGroup.fileType = NULL;
 
     prog = *argv;
     if (argc < 2)
@@ -103,7 +110,7 @@ int main (int argc, char **argv)
                  " [-g group] cmd1 dir1 cmd2 dir2 ...\n");
         exit (1);
     }
-    while ((ret = options ("c:g:v:m:d:", argv, argc, &arg)) != -2)
+    while ((ret = options ("t:c:g:v:m:d:", argv, argc, &arg)) != -2)
     {
         if (ret == 0)
         {
@@ -117,7 +124,7 @@ int main (int argc, char **argv)
                 {
                     cmd = 'd';
                 }
-                else if (!strcmp (arg, "update"))
+                else if (!strcmp (arg, "dir"))
                 {
                     cmd = 'u';
                 }
@@ -175,6 +182,8 @@ int main (int argc, char **argv)
         }
         else if (ret == 'c')
             configName = arg;
+        else if (ret == 't')
+            rGroup.fileType = arg;
         else
         {
             logf (LOG_FATAL, "Unknown option '-%s'", arg);