diff options
author | Olivier Bertrand <bertrandop@gmail.com> | 2014-08-24 11:19:02 +0200 |
---|---|---|
committer | Olivier Bertrand <bertrandop@gmail.com> | 2014-08-24 11:19:02 +0200 |
commit | 22e8ab422cab074ba057bf7d0cf15c8c6dad2d8b (patch) | |
tree | c5ce10dd97fcaf55b9cf4e4ef511093ed4909475 /storage/connect/tabmul.cpp | |
parent | 74a46726227b5f34dedb28ff6d7a4d81b157d764 (diff) | |
download | mariadb-git-22e8ab422cab074ba057bf7d0cf15c8c6dad2d8b.tar.gz |
- Fix a compile error on Linux
modified:
storage/connect/tabmul.cpp
Diffstat (limited to 'storage/connect/tabmul.cpp')
-rwxr-xr-x | storage/connect/tabmul.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabmul.cpp b/storage/connect/tabmul.cpp index 047b4d3aeec..4b40e6c5509 100755 --- a/storage/connect/tabmul.cpp +++ b/storage/connect/tabmul.cpp @@ -688,7 +688,7 @@ char* TDBDIR::Path(PGLOBAL g) return Fpath; #else // !WIN32 if (!Done) { - PlugSetPath(Fpath, To_File, cat->GetDataPath()); + PlugSetPath(Fpath, To_File, ((PTABDEF)To_Def)->GetPath()); _splitpath(Fpath, NULL, Direc, Fname, Ftype); strcat(strcpy(Pattern, Fname), Ftype); Done = true; |