diff options
author | unknown <hf@deer.(none)> | 2003-06-04 15:12:32 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2003-06-04 15:12:32 +0500 |
commit | e2da9dba58db3dd0aeccadbf4c862d12f1a2c2d6 (patch) | |
tree | 775e79a367ff179a835eff3dc93073d8a29ebfa4 /include/mysql_com.h | |
parent | bb01fb82ab4e8198941c84cf4ec2bebf3c84940a (diff) | |
download | mariadb-git-e2da9dba58db3dd0aeccadbf4c862d12f1a2c2d6.tar.gz |
SCRUM
simultaneously usable libraries
unification of client structures
include/mysql.h:
Unification of MYSQL structure for client library and embedded library
include/mysql_com.h:
unification NET structure for client and embedded library
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r-- | include/mysql_com.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index bbfb869927b..1af1ed36af6 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -125,7 +125,7 @@ typedef struct st_vio Vio; #define MAX_BLOB_WIDTH 8192 /* Default width for blob */ typedef struct st_net { -#ifndef EMBEDDED_LIBRARY +#if !defined(CHECK_EMBEDDED_DIFFERENCES) || !defined(EMBEDDED_LIBRARY) Vio* vio; unsigned char *buff,*buff_end,*write_pos,*read_pos; my_socket fd; /* For Perl DBI/dbd */ |