diff options
author | unknown <monty@hundin.mysql.fi> | 2001-10-03 17:02:14 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-10-03 17:02:14 +0300 |
commit | 664647d1f7c190f1cc54fb817b10c86f994c1fdc (patch) | |
tree | bbfafc773031daba5da578013d4bbd52be39e770 /mysys/mf_iocache2.c | |
parent | 2e0dc69895280f3b407e56dace32ad9cf25ce356 (diff) | |
download | mariadb-git-664647d1f7c190f1cc54fb817b10c86f994c1fdc.tar.gz |
Portability fixes.
Build-tools/Do-compile:
Don't delete distribution if not using --delete
Docs/manual.texi:
Added information about default values
mysql-test/t/rpl000017.test:
Fixed replication test to be more portable
mysys/mf_iocache2.c:
More comments
sql/item_sum.cc:
Cleanup
sql/log_event.cc:
Cleanup
sql/mysqld.cc:
Fixed typos in output
sql/sql_base.cc:
Cleanup
sql/sql_delete.cc:
Cleanup
sql/sql_select.cc:
Cleanup
sql/uniques.cc:
Portability fix
Diffstat (limited to 'mysys/mf_iocache2.c')
-rw-r--r-- | mysys/mf_iocache2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysys/mf_iocache2.c b/mysys/mf_iocache2.c index 1397c14515b..76b8055bb45 100644 --- a/mysys/mf_iocache2.c +++ b/mysys/mf_iocache2.c @@ -96,6 +96,7 @@ uint my_b_fill(IO_CACHE *info) ** Read a string ended by '\n' into a buffer of 'max_length' size. ** Returns number of characters read, 0 on error. ** last byte is set to '\0' +** If buffer is full then to[max_length-1] will be set to \0. */ uint my_b_gets(IO_CACHE *info, char *to, uint max_length) |