[GRASS-SVN] r47519 - grass/branches/releasebranch_6_4/db/drivers/dbf

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Aug 9 19:47:02 EDT 2011


Author: martinl
Date: 2011-08-09 16:47:02 -0700 (Tue, 09 Aug 2011)
New Revision: 47519

Modified:
   grass/branches/releasebranch_6_4/db/drivers/dbf/table.c
Log:
DBMI-DBF: fix 45652
         (merge r47517 from trunk)


Modified: grass/branches/releasebranch_6_4/db/drivers/dbf/table.c
===================================================================
--- grass/branches/releasebranch_6_4/db/drivers/dbf/table.c	2011-08-09 23:45:57 UTC (rev 47518)
+++ grass/branches/releasebranch_6_4/db/drivers/dbf/table.c	2011-08-09 23:47:02 UTC (rev 47519)
@@ -51,7 +51,7 @@
     strcpy(db.tables[db.ntables].name, table);
 
 #ifdef __MINGW32__
-    sprintf(db.tables[db.ntables].file, "%s\%s", db.name, name);
+    sprintf(db.tables[db.ntables].file, "%s\\%s", db.name, name);
 #else
     sprintf(db.tables[db.ntables].file, "%s/%s", db.name, name);
 #endif



More information about the grass-commit mailing list