diff options
author | unknown <monty@hundin.mysql.fi> | 2002-03-06 22:06:18 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-03-06 22:06:18 +0200 |
commit | c13baf70ec937501389ed6e9f94c98635f1c1b76 (patch) | |
tree | 144f453dcafda3e77cbdd33007723b65d60e699c /libmysql | |
parent | d6998363afc004fd92248af521ed40fa52027954 (diff) | |
download | mariadb-git-c13baf70ec937501389ed6e9f94c98635f1c1b76.tar.gz |
Fix for --enable-local-infile
Docs/manual.texi:
Changelog
acinclude.m4:
Cleanup --help output
libmysql/libmysql.c:
Fix for reading option groups in client
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/libmysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index 348e3942a63..09a9fc0dd4c 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -712,7 +712,7 @@ static void mysql_read_default_options(struct st_mysql_options *options, *end=0; /* Remove '=' */ } /* Change all '_' in variable name to '-' */ - for (end= *option ; (end= strcend(end,'_')) ; ) + for (end= *option ; *(end= strcend(end,'_')) ; ) *end= '-'; switch (find_type(*option+2,&option_types,2)) { case 1: /* port */ |