Commit 2d85b100 authored by Olivier Bertrand's avatar Olivier Bertrand

Fix gcc compile error. modified: storage/connect/tabmul.cpp

parent cd337a37
...@@ -1299,8 +1299,8 @@ int TDBSDR::ReadDB(PGLOBAL g) ...@@ -1299,8 +1299,8 @@ int TDBSDR::ReadDB(PGLOBAL g)
if (lstat(Fpath, &Fileinfo) < 0) { if (lstat(Fpath, &Fileinfo) < 0) {
sprintf(g->Message, "%s: %s", Fpath, strerror(errno)); sprintf(g->Message, "%s: %s", Fpath, strerror(errno));
rc = RC_FX; rc = RC_FX;
} else if (S_ISDIR(Fileinfo.st_mode) && strcmp(Entry->d_name, "." } else if (S_ISDIR(Fileinfo.st_mode) && strcmp(Entry->d_name, ".")
&& strcmp(Entry->d_name, "..") { && strcmp(Entry->d_name, "..")) {
// Look in the name sub-directory // Look in the name sub-directory
if (!Sub->Next) { if (!Sub->Next) {
PSUBDIR sup; PSUBDIR sup;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment