Commit 72622734 authored by unknown's avatar unknown

Change snprintf to my_snprintf


client/mysqldump.c:
  snprintf =>  my_snprintf
parent 24c44a9b
......@@ -3292,7 +3292,7 @@ static my_bool get_view_structure(char *table, char* db)
result_table= quote_name(table, table_buff, 1);
opt_quoted_table= quote_name(table, table_buff2, 0);
snprintf(query, sizeof(query), "SHOW CREATE TABLE %s", result_table);
my_snprintf(query, sizeof(query), "SHOW CREATE TABLE %s", result_table);
if (mysql_query_with_error_report(sock, &table_res, query))
{
safe_exit(EX_MYSQLERR);
......@@ -3335,10 +3335,10 @@ static my_bool get_view_structure(char *table, char* db)
}
snprintf(query, sizeof(query),
"SELECT CHECK_OPTION, DEFINER, SECURITY_TYPE " \
"FROM information_schema.views " \
"WHERE table_name=\"%s\" AND table_schema=\"%s\"", table, db);
my_snprintf(query, sizeof(query),
"SELECT CHECK_OPTION, DEFINER, SECURITY_TYPE " \
"FROM information_schema.views " \
"WHERE table_name=\"%s\" AND table_schema=\"%s\"", table, db);
if (mysql_query(sock, query))
{
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment