List:Commits« Previous MessageNext Message »
From:Stewart Smith Date:February 20 2008 12:30pm
Subject:bk commit into 5.0 tree (stewart:1.2522)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of stewart. When stewart 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@stripped, 2008-02-20 23:30:39+11:00, stewart@stripped +1 -0
  [PATCH] Fix segfaulting --usage (introduced in ndb_opts.c) --- ndb/src/common/util/ndb_opts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
  
  Index: ndbwin32/ndb/src/common/util/ndb_opts.c
  ===================================================================

  ndb/src/common/util/ndb_opts.c@stripped, 2008-02-14 23:22:25+11:00, stewart@stripped +2 -2
    Fix segfaulting --usage (introduced in ndb_opts.c) --- ndb/src/common/util/ndb_opts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

diff -Nrup a/ndb/src/common/util/ndb_opts.c b/ndb/src/common/util/ndb_opts.c
--- a/ndb/src/common/util/ndb_opts.c	2008-02-11 16:23:37 +11:00
+++ b/ndb/src/common/util/ndb_opts.c	2008-02-14 23:22:25 +11:00
@@ -8,8 +8,8 @@ void ndb_short_usage_sub(void)
 {
   printf("Usage: %s [OPTIONS]\n", my_progname);
 }
-extern struct my_option *my_long_options;
-extern char **load_default_groups;
+extern const struct my_option my_long_options[];
+extern const char *load_default_groups[];
 void ndb_usage()
 {
   ndb_short_usage_sub();
Thread
bk commit into 5.0 tree (stewart:1.2522)Stewart Smith20 Feb