[GRASS-SVN] r47518 - grass/branches/develbranch_6/db/drivers/dbf
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Aug 9 19:45:57 EDT 2011
Author: martinl
Date: 2011-08-09 16:45:57 -0700 (Tue, 09 Aug 2011)
New Revision: 47518
Modified:
grass/branches/develbranch_6/db/drivers/dbf/table.c
Log:
DBMI-DBF: fix 45652
(merge r47517 from trunk)
Modified: grass/branches/develbranch_6/db/drivers/dbf/table.c
===================================================================
--- grass/branches/develbranch_6/db/drivers/dbf/table.c 2011-08-09 23:43:36 UTC (rev 47517)
+++ grass/branches/develbranch_6/db/drivers/dbf/table.c 2011-08-09 23:45:57 UTC (rev 47518)
@@ -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