formatting corrected (tabs->spaces)
authorJan Kupec <jkupec@suse.cz>
Tue, 10 Oct 2006 14:29:54 +0000 (14:29 +0000)
committerJan Kupec <jkupec@suse.cz>
Tue, 10 Oct 2006 14:29:54 +0000 (14:29 +0000)
tools/zmart/zypper.cc

index 711a1f6..a390b02 100644 (file)
@@ -301,27 +301,27 @@ int main(int argc, char **argv)
       "\t--type,-t\t\tType of resolvable (default: package)\n"
       ;
   }
-       else if (command == "search" || command == "se") {
-               static struct option search_options[] = {
+  else if (command == "search" || command == "se") {
+    static struct option search_options[] = {
       {"installed-only", no_argument, 0, 'i'},
       {"uninstalled-only", no_argument, 0, 'u'},
       {"match-all", no_argument, 0, 0},
       {"match-any", no_argument, 0, 0},
       {"help", no_argument, 0, 0}
-               };
-               specific_options = search_options;
-               specific_help =
-    "search [options] [querystring...]\n"
-    "\n"
-    "'search' - Search for packages matching given search strings\n"
-    "\n"
-    "  Command options:\n"
-    "    --match-all         Search for a match to all search strings (default)\n"
-    "    --match-any         Search for a match to any of the search strings\n"
-               "-i, --installed-only    Show only packages that are already installed.\n"
-    "-u, --uninstalled-only  Show only packages that are not curenly installed.\n"
-               ;
-       }
+    };
+    specific_options = search_options;
+    specific_help =
+      "search [options] [querystring...]\n"
+      "\n"
+      "'search' - Search for packages matching given search strings\n"
+      "\n"
+      "  Command options:\n"
+      "    --match-all         Search for a match to all search strings (default)\n"
+      "    --match-any         Search for a match to any of the search strings\n"
+      "-i, --installed-only    Show only packages that are already installed.\n"
+      "-u, --uninstalled-only  Show only packages that are not curenly installed.\n"
+      ;
+  }
   else {
     cerr_vv << "No options declared for command " << command << endl;
     // no options. or make this an exhaustive thing?
@@ -610,9 +610,9 @@ int main(int argc, char **argv)
     return 0;
   }
 
-       if (command == "search" || command == "se") {
+  if (command == "search" || command == "se") {
     ZyppSearchOptions options;
-    
+
     if (help || copts.count("help")) {
       cerr << specific_help;
       return !help;
@@ -621,7 +621,7 @@ int main(int argc, char **argv)
     if (copts.count("installed-only")) {
       options.setInstalledOnly();
     }
-    
+
     if (gSettings.disable_system_resolvables || copts.count("uninstalled-only")) {
       options.setUnInstalledOnly();
     }
@@ -636,7 +636,7 @@ int main(int argc, char **argv)
       cout << "No packages found." << endl;
     else
       cout << t;
-       }
+  }
 
   // TODO: rug status
   if (command == "patch-check" || command == "pchk") {