From 5193315f9d9012beea31b9110a3385784e803ee6 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 6 Sep 2003 15:06:08 -0400 Subject: added space after first '--' in the long '----....' comment line in mysqldump just to make it compatible with the manual (fixed bug #1056) client/mysqldump.c: added space after first '--' in the long '----....' comment line just to make it compatible with the manual (fixed bug #1056) --- client/mysqldump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') diff --git a/client/mysqldump.c b/client/mysqldump.c index f1425faf0ed..68af4fd6953 100644 --- a/client/mysqldump.c +++ b/client/mysqldump.c @@ -307,7 +307,7 @@ static void write_header(FILE *sql_file, char *db_name) fprintf(sql_file, "-- MySQL dump %s\n--\n", DUMP_VERSION); fprintf(sql_file, "-- Host: %s Database: %s\n", current_host ? current_host : "localhost", db_name ? db_name : ""); - fputs("---------------------------------------------------------\n", + fputs("-- ------------------------------------------------------\n", sql_file); fprintf(sql_file, "-- Server version\t%s\n", mysql_get_server_info(&mysql_connection)); -- cgit v1.2.1