diff options
author | unknown <petr@mysql.com> | 2005-05-18 15:28:38 +0400 |
---|---|---|
committer | unknown <petr@mysql.com> | 2005-05-18 15:28:38 +0400 |
commit | 6ca52fcc95e6d6c9812c2a14e4bf5805d056a57a (patch) | |
tree | 752e762f1e3320792381e49477f3ee49eb0f4358 | |
parent | 9c71571f8391252752be68c36d29c6629dd2668b (diff) | |
download | mariadb-git-6ca52fcc95e6d6c9812c2a14e4bf5805d056a57a.tar.gz |
fix comments
server-tools/instance-manager/commands.cc:
fix column name
-rw-r--r-- | mysys/default.c | 4 | ||||
-rw-r--r-- | server-tools/instance-manager/commands.cc | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mysys/default.c b/mysys/default.c index ba1a6c1513b..ee7cbeb1530 100644 --- a/mysys/default.c +++ b/mysys/default.c @@ -85,10 +85,10 @@ static char *remove_end_comment(char *ptr); Add/remove option to the option file section. SYNOPSYS - my_correct_file() + my_correct_defaults_file() file_location The location of configuration file to edit option option to look for - option value The value of the option we would like to set + option_value The value of the option we would like to set section_name the name of the section remove_option This is true if we want to remove the option. False otherwise. diff --git a/server-tools/instance-manager/commands.cc b/server-tools/instance-manager/commands.cc index d6d4370fb7f..fd346148df2 100644 --- a/server-tools/instance-manager/commands.cc +++ b/server-tools/instance-manager/commands.cc @@ -548,7 +548,7 @@ int Show_instance_log_files::execute(struct st_net *net, ulong connection_id) path_field.name= (char*) "Path"; path_field.length= DEFAULT_FIELD_LENGTH; path.data= &path_field; - size_field.name= (char*) "Filesize"; + size_field.name= (char*) "File size"; size_field.length= DEFAULT_FIELD_LENGTH; size.data= &size_field; field_list= list_add(NULL, &size); |