[GRASS-SVN] r50627 - grass/branches/releasebranch_6_4/db/base

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Feb 2 06:57:48 EST 2012


Author: martinl
Date: 2012-02-02 03:57:47 -0800 (Thu, 02 Feb 2012)
New Revision: 50627

Modified:
   grass/branches/releasebranch_6_4/db/base/drivers.c
Log:
db.drivers: cosmetics in description

Modified: grass/branches/releasebranch_6_4/db/base/drivers.c
===================================================================
--- grass/branches/releasebranch_6_4/db/base/drivers.c	2012-02-02 11:53:40 UTC (rev 50626)
+++ grass/branches/releasebranch_6_4/db/base/drivers.c	2012-02-02 11:57:47 UTC (rev 50627)
@@ -38,8 +38,7 @@
 
     list = db_read_dbmscap();
     if (list == NULL) {
-	G_message(_("Error trying to read dbmscap file\n"));
-	exit(EXIT_FAILURE);
+	G_fatal_error(_("Error trying to read dbmscap file"));
     }
 
     for (p = list; p; p = p->next) {
@@ -67,12 +66,12 @@
 
     print = G_define_flag();
     print->key = 'p';
-    print->description = _("print drivers and exit");
+    print->description = _("Print drivers and exit");
 
     /* Set description */
     module = G_define_module();
     module->keywords = _("database, attribute table");
-    module->description = _("List all database drivers.");
+    module->description = _("Lists all database drivers.");
 
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);



More information about the grass-commit mailing list