blob: 7656ef45f7e74fb939f9241ca451ed2e29c3934f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- src/util.cpp.orig Tue Oct 1 20:41:14 2002
+++ src/util.cpp Tue May 13 16:10:35 2003
@@ -160,6 +160,7 @@
if (cfg.query("dirs", "data"))
{
filepath = cfg.query("dirs", "data");
+ filepath += "/";
filepath += pos_dir;
filepath += file;
@@ -171,6 +172,7 @@
}
filepath = DATADIR;
+ filepath += "/";
filepath += pos_dir;
filepath += file;
|