[GRASS-SVN] r36164 - grass/branches/develbranch_6/lib/gis
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Mar 1 09:59:06 EST 2009
Author: hamish
Date: 2009-03-01 09:59:05 -0500 (Sun, 01 Mar 2009)
New Revision: 36164
Modified:
grass/branches/develbranch_6/lib/gis/parser.c
Log:
respect opt->label
Modified: grass/branches/develbranch_6/lib/gis/parser.c
===================================================================
--- grass/branches/develbranch_6/lib/gis/parser.c 2009-03-01 14:52:06 UTC (rev 36163)
+++ grass/branches/develbranch_6/lib/gis/parser.c 2009-03-01 14:59:05 UTC (rev 36164)
@@ -2406,7 +2406,7 @@
if (opt->required && opt->answer == NULL) {
fprintf(stderr,
_("\nERROR: Required parameter <%s> not set:\n (%s).\n"),
- opt->key, opt->description);
+ opt->key, (opt->label ? opt->label : opt->description) );
err++;
}
opt = opt->next_opt;
More information about the grass-commit
mailing list