[GRASS-SVN] r50628 - grass/branches/develbranch_6/db/base
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Feb 2 07:05:27 EST 2012
Author: martinl
Date: 2012-02-02 04:05:27 -0800 (Thu, 02 Feb 2012)
New Revision: 50628
Modified:
grass/branches/develbranch_6/db/base/drivers.c
Log:
db.drivers: cosmetics in description
(merge r50627 from relbr64)
Modified: grass/branches/develbranch_6/db/base/drivers.c
===================================================================
--- grass/branches/develbranch_6/db/base/drivers.c 2012-02-02 11:57:47 UTC (rev 50627)
+++ grass/branches/develbranch_6/db/base/drivers.c 2012-02-02 12:05:27 UTC (rev 50628)
@@ -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