Browse Source

G_legal_filename: message merged from trunk, https://trac.osgeo.org/grass/changeset/62450

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@62481 15284696-431f-4ddb-bdfa-cd5b030d7da7
Huidae Cho 10 years ago
parent
commit
281d0a2dee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/gis/legal_name.c

+ 1 - 1
lib/gis/legal_name.c

@@ -36,7 +36,7 @@ int G_legal_filename(const char *s)
     const char *name = s;
     
     if (*s == '.' || *s == 0) {
-	G_warning(_("Illegal filename <%s>. Cannot be '.' or 'NULL'."), name);
+	G_warning(_("Illegal filename <%s>. Cannot start with '.' or be 'NULL'."), name);
 	return -1;
     }