diff options
author | unknown <monty@hundin.mysql.fi> | 2002-03-25 18:10:34 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-03-25 18:10:34 +0200 |
commit | 9ee0658adc1d79528e8a1b78c0369ebad6bb57d0 (patch) | |
tree | 37e6dbff799fdd1e484007e0c2cec9bf3bbb073a /Docs/manual.texi | |
parent | 9ed83bda3d196552934eaa8fa284463e87f82865 (diff) | |
download | mariadb-git-9ee0658adc1d79528e8a1b78c0369ebad6bb57d0.tar.gz |
Fixed that RPM can be recompiled even if there is not another glibc in /usr/local/mysql-glibc
Build-tools/Do-compile:
Fix to build mysqlcom
Build-tools/Do-rpm:
Fixes for building with gcc 3.0.4
Docs/manual.texi:
Small bug fix
configure.in:
Cleanup
Diffstat (limited to 'Docs/manual.texi')
-rw-r--r-- | Docs/manual.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 600ad5efe5a..c03ca5462a5 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -32044,7 +32044,7 @@ mysql> select INET_ATON("209.207.224.40"); @end example The generated number is always in network byte order; For example the -above number is calculated as @code{209*255^3 + 207*255^2 + 224*255 +40}. +above number is calculated as @code{209*256^3 + 207*256^2 + 224*256 +40}. @findex MASTER_POS_WAIT() @item MASTER_POS_WAIT(log_name, log_pos) |