Glynn:
>I meant: what happens if you remove the G_strcasecmp() check (or
>replace it with strcmp()), then try it. 

I finally had a chance to test this out. Replacing line 28 in 
/general/manage/lib/do_rename.c:

if (G_strcasecmp (old,new) == 0) return 1; 

with 

if (strcmp (old,new) == 0) return 1;

enables correct renaming for rasters, vectors, and regions. 

~ Eric.


_______________________________________________
grass-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-dev

Reply via email to