Browse Source

ogsflib cosmetics: print fully qualified vector name

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@32204 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 17 years ago
parent
commit
95f96ef3e6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/ogsf/Gv3.c

+ 2 - 2
lib/ogsf/Gv3.c

@@ -60,7 +60,7 @@ geoline *Gv_load_vect(const char *grassname, int *nlines)
     Vect_set_open_level (2); 
     if (Vect_open_old (&map, grassname, "") == -1) {
 	G_warning (_("Unable to open vector map <%s>"),
-		   grassname);
+		   G_fully_qualified_name(grassname, mapset));
 	return NULL;
     }
 
@@ -244,7 +244,7 @@ geoline *Gv_load_vect(const char *grassname, int *nlines)
     }
     else {
       G_message (_("Vector map <%s> loaded (%d features)"),
-		 grassname, nl);
+		 G_fully_qualified_name(grassname, mapset), nl);
     }
     
     *nlines = nl;