summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <hf@deer.(none)>2003-12-12 18:27:25 +0400
committerunknown <hf@deer.(none)>2003-12-12 18:27:25 +0400
commite21c799dde9e9fbcd3e89f757b352eb9589a82f4 (patch)
tree77c6779df41357e05c62fceedeb9ded4fc524ea3
parent88fd3c89ff1e257656611f428359c8971506bbc3 (diff)
downloadmariadb-git-e21c799dde9e9fbcd3e89f757b352eb9589a82f4.tar.gz
Edited fix for #1224.
strcpy changed to strmake libmysqld/lib_sql.cc: strcpy to strmake
-rw-r--r--libmysqld/lib_sql.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc
index 03e3c1fee30..91a308ecb21 100644
--- a/libmysqld/lib_sql.cc
+++ b/libmysqld/lib_sql.cc
@@ -224,7 +224,7 @@ static bool check_user(THD *thd,enum_server_command command, const char *user,
send_error(net,ER_OUT_OF_RESOURCES);
return 1;
}
- strcpy(thd->priv_host, LOCAL_HOST);
+ strmake(thd->priv_host, LOCAL_HOST, sizeof(thd->priv_host)-1);
thd->master_access=acl_getroot(thd, thd->host, thd->ip, thd->user,
passwd, thd->scramble,
&thd->priv_user, thd->priv_host,