Browse Source

update modules to https://trac.osgeo.org/grass/changeset/63851

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63853 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 years ago
parent
commit
4c7a8d5587
3 changed files with 3 additions and 3 deletions
  1. 1 1
      general/g.list/main.c
  2. 1 1
      general/g.mkfontcap/stroke_fonts.c
  3. 1 1
      general/g.remove/main.c

+ 1 - 1
general/g.list/main.c

@@ -404,7 +404,7 @@ static void make_list(struct elist **el, int *lcount, int *lalloc,
     if (access(path, 0) != 0)
 	return;
 
-    if ((list = G__ls(path, &count)) == NULL)
+    if ((list = G_ls2(path, &count)) == NULL)
 	return;
 
     if (strcmp(alias, "raster") == 0)

+ 1 - 1
general/g.mkfontcap/stroke_fonts.c

@@ -56,7 +56,7 @@ void find_stroke_fonts(void)
 
     G_asprintf(&dirpath, "%s/fonts", G_gisbase());
 
-    dirlisting = G__ls(dirpath, &numfiles);
+    dirlisting = G_ls2(dirpath, &numfiles);
 
     G_asprintf(&fonttable, "%s/fonts.table", dirpath);
     if (access(fonttable, R_OK) == 0)

+ 1 - 1
general/g.remove/main.c

@@ -236,7 +236,7 @@ int main(int argc, char *argv[])
 	    continue;
 
 	rast = !G_strcasecmp(elem->alias, "raster");
-	files = G__ls(path, &num_files);
+	files = G_ls2(path, &num_files);
 
 	for (j = 0; j < num_files; j++) {
 	    if (!flag.force->answer) {