Commit e6fc773b authored by tnurnberg@white.intern.koehntopp.de's avatar tnurnberg@white.intern.koehntopp.de
Browse files

Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-5.0-opt

into  mysql.com:/misc/mysql/32770/50-32770
parents 1d846098 977a189e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3592,7 +3592,7 @@ void do_get_file_name(struct st_command *command,
  if (*p)
    *p++= 0;
  command->last_argument= p;
  strmake(dest, name, dest_max_len);
  strmake(dest, name, dest_max_len - 1);
}


@@ -6908,7 +6908,7 @@ int main(int argc, char **argv)

	if (save_file[0])
	{
	  strmake(command->require_file, save_file, sizeof(save_file));
	  strmake(command->require_file, save_file, sizeof(save_file) - 1);
	  save_file[0]= 0;
	}
	run_query(cur_con, command, flags);