diff options
author | serg@serg.mylan <> | 2004-02-19 09:11:46 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-02-19 09:11:46 +0100 |
commit | 7a03cf04afee478565b610d27c7387d1a12cfe04 (patch) | |
tree | be8ef133c8fd7008e97a8ce6fc64816e34258ec5 /libmysql/manager.c | |
parent | efb134f3a874befe4ab1779f597ada09f57ca191 (diff) | |
download | mariadb-git-7a03cf04afee478565b610d27c7387d1a12cfe04.tar.gz |
potential problem fixed afer some reasoning
Diffstat (limited to 'libmysql/manager.c')
-rw-r--r-- | libmysql/manager.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/manager.c b/libmysql/manager.c index 1a4ac718ef9..5d432848f7b 100644 --- a/libmysql/manager.c +++ b/libmysql/manager.c @@ -133,7 +133,7 @@ MYSQL_MANAGER* STDCALL mysql_manager_connect(MYSQL_MANAGER* con, if (!hp) { con->last_errno=tmp_errno; - sprintf(con->last_error,"Could not resolve host '%s'",host); + sprintf(con->last_error,"Could not resolve host '%-.64s'",host); my_gethostbyname_r_free(); goto err; } |