Update of /cvsroot/monetdb/pathfinder/compiler
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv25857

Modified Files:
        main.c 
Log Message:
-- Fixed incomplete option string in case get_opt is not available.

-- Removed bogus PFinfo() calls that just returned parts of the command line.


Index: main.c
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/main.c,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -d -r1.95 -r1.96
--- main.c      26 Nov 2007 08:57:47 -0000      1.95
+++ main.c      11 Jan 2008 09:02:26 -0000      1.96
@@ -652,7 +652,7 @@
                                      "e:f:Shlo:pqrs:t", 
                          long_options, &option_index);
 #else
-        c = getopt (argc, argv, "ADHMO::PTXabc"
+        c = getopt (argc, argv, "ADHIMO::PTXabc"
 #ifndef NDEBUG
                                 "d:"
 #endif
@@ -815,7 +815,6 @@
                 printf ("Enjoy.\n");
                 exit (0);
 
-
             case 'I':
                 status->import_xml = true;
                 status->import_xml_filename = NULL;
@@ -894,8 +893,6 @@
                                                     + strlen (optarg) +1);
                     strcat (status->format, optarg);
                 }
-
-                PFinfo (OOPS_NOTICE, "format: `%s'", status->format);
                 break;
 
             case 'h':
@@ -948,9 +945,6 @@
             case 'o':
                 explicit_opt = true;
                 status->opt_alg = PFstrdup (optarg);
-                PFinfo (OOPS_NOTICE, 
-                        "optimization options: `%s'", 
-                        status->opt_alg);
                 break;
 
             case 'q':


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to