1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix Windows-build failure: use my_snprintf() instead of snprintf().

This commit is contained in:
Alexander Nozdrin
2011-10-20 18:06:41 +04:00
parent 7d882c19ec
commit c67ccdcdc7

View File

@ -18524,14 +18524,14 @@ static void test_bug13001491()
myheader("test_bug13001491"); myheader("test_bug13001491");
snprintf(query, MAX_TEST_QUERY_LENGTH, my_snprintf(query, MAX_TEST_QUERY_LENGTH,
"GRANT ALL PRIVILEGES ON *.* TO mysqltest_u1@%s", "GRANT ALL PRIVILEGES ON *.* TO mysqltest_u1@%s",
opt_host ? opt_host : "'localhost'"); opt_host ? opt_host : "'localhost'");
rc= mysql_query(mysql, query); rc= mysql_query(mysql, query);
myquery(rc); myquery(rc);
snprintf(query, MAX_TEST_QUERY_LENGTH, my_snprintf(query, MAX_TEST_QUERY_LENGTH,
"GRANT RELOAD ON *.* TO mysqltest_u1@%s", "GRANT RELOAD ON *.* TO mysqltest_u1@%s",
opt_host ? opt_host : "'localhost'"); opt_host ? opt_host : "'localhost'");
@ -18584,7 +18584,7 @@ static void test_bug13001491()
mysql_close(c); mysql_close(c);
c= NULL; c= NULL;
snprintf(query, MAX_TEST_QUERY_LENGTH, my_snprintf(query, MAX_TEST_QUERY_LENGTH,
"DROP USER mysqltest_u1@%s", "DROP USER mysqltest_u1@%s",
opt_host ? opt_host : "'localhost'"); opt_host ? opt_host : "'localhost'");