summaryrefslogtreecommitdiff
path: root/storage/connect/tabdos.h
diff options
context:
space:
mode:
authorOlivier Bertrand <bertrandop@gmail.com>2014-10-09 17:23:37 +0200
committerOlivier Bertrand <bertrandop@gmail.com>2014-10-09 17:23:37 +0200
commit5821b8eb022f23a7384a18b5f580de8b0644d5bb (patch)
treeaffcde99cf6d0386baba439edcdc3da36be218f9 /storage/connect/tabdos.h
parentf80e4ed941ab28f3ee150d98ea6a411e51a8396f (diff)
downloadmariadb-git-5821b8eb022f23a7384a18b5f580de8b0644d5bb.tar.gz
- in CheckCond change strcat to strncat to avoid the case of non zero
terminated string. modified: storage/connect/ha_connect.cc - The Accept and Header Boolean variables were wrongly retrieved using GetIntInfo instead of GetBoolInfo causing some setting to ignored. modified: storage/connect/tabdos.cpp storage/connect/tabdos.h storage/connect/tabfmt.cpp - Fix date truncated because their Value class was not using their field length. modified: storage/connect/ha_connect.cc
Diffstat (limited to 'storage/connect/tabdos.h')
-rw-r--r--storage/connect/tabdos.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/connect/tabdos.h b/storage/connect/tabdos.h
index 1c772e8bf23..156d46b9791 100644
--- a/storage/connect/tabdos.h
+++ b/storage/connect/tabdos.h
@@ -77,7 +77,7 @@ class DllExport DOSDEF : public TABDEF { /* Logical table description */
bool Mapped; /* 0: disk file, 1: memory mapped file */
bool Padded; /* true for padded table file */
bool Huge; /* true for files larger than 2GB */
- bool Accept; /* true if wrong lines are accepted (DBF)*/
+ bool Accept; /* true if wrong lines are accepted */
bool Eof; /* true if an EOF (0xA) character exists */
int *To_Pos; /* To array of block starting positions */
int Optimized; /* 0: No, 1:Yes, 2:Redo optimization */