From: Date: December 5 2005 12:12pm Subject: bk commit into 5.0 tree (knielsen:1.1975) BUG#15097 List-Archive: http://lists.mysql.com/internals/33019 X-Bug: 15097 Message-Id: Below is the list of changes that have just been committed into a local 5.0 repository of knielsen. When knielsen does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet 1.1975 05/12/05 12:12:08 knielsen@stripped +1 -0 Bug#15097: Missing \n in header printed by mysql --help when HAVE_READLINE is not defined. client/mysql.cc 1.193 05/12/05 12:11:59 knielsen@stripped +1 -1 Fix missing \n in the --help header when HAVE_READLINE is not defined. # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: knielsen # Host: rt.int.sifira.dk # Root: /usr/local/mysql/mysql-5.0-bug15097 --- 1.192/client/mysql.cc 2005-12-04 19:55:14 +01:00 +++ 1.193/client/mysql.cc 2005-12-05 12:11:59 +01:00 @@ -728,7 +728,7 @@ my_progname, VER, MYSQL_SERVER_VERSION, SYSTEM_TYPE, MACHINE_TYPE, readline, rl_library_version); #else - printf("%s Ver %s Distrib %s, for %s (%s)", my_progname, VER, + printf("%s Ver %s Distrib %s, for %s (%s)\n", my_progname, VER, MYSQL_SERVER_VERSION, SYSTEM_TYPE, MACHINE_TYPE); #endif