Loading ndb/include/ndb_global.h +8 −0 Original line number Diff line number Diff line Loading @@ -94,6 +94,14 @@ extern int strcasecmp(const char *s1, const char *s2); extern int strncasecmp(const char *s1, const char *s2, size_t n); #endif #ifdef SCO #ifndef PATH_MAX #define PATH_MAX 1024 #endif #endif /* SCO */ #ifdef __cplusplus } #endif Loading ndb/src/common/logger/FileLogHandler.cpp +2 −7 Original line number Diff line number Diff line Loading @@ -14,15 +14,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <ndb_global.h> #include <FileLogHandler.hpp> #include <File.hpp> // alt use PATH_MAX #ifndef MAXPATHLEN #define MAXPATHLEN 1024 #endif // // PUBLIC // Loading Loading @@ -151,7 +146,7 @@ FileLogHandler::createNewFile() { bool rc = true; int fileNo = 1; char newName[MAXPATHLEN]; char newName[PATH_MAX]; do { Loading Loading
ndb/include/ndb_global.h +8 −0 Original line number Diff line number Diff line Loading @@ -94,6 +94,14 @@ extern int strcasecmp(const char *s1, const char *s2); extern int strncasecmp(const char *s1, const char *s2, size_t n); #endif #ifdef SCO #ifndef PATH_MAX #define PATH_MAX 1024 #endif #endif /* SCO */ #ifdef __cplusplus } #endif Loading
ndb/src/common/logger/FileLogHandler.cpp +2 −7 Original line number Diff line number Diff line Loading @@ -14,15 +14,10 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include <ndb_global.h> #include <FileLogHandler.hpp> #include <File.hpp> // alt use PATH_MAX #ifndef MAXPATHLEN #define MAXPATHLEN 1024 #endif // // PUBLIC // Loading Loading @@ -151,7 +146,7 @@ FileLogHandler::createNewFile() { bool rc = true; int fileNo = 1; char newName[MAXPATHLEN]; char newName[PATH_MAX]; do { Loading