]> git.pld-linux.org Git - packages/mysql.git/commitdiff
- outdated it seems
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 10 Jul 2007 18:34:09 +0000 (18:34 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    mysql-align.patch -> 1.4

mysql-align.patch [deleted file]

diff --git a/mysql-align.patch b/mysql-align.patch
deleted file mode 100644 (file)
index 07420c1..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
---- mysql-4.1.10/mysys/my_getopt.c.orig        2005-02-12 21:37:32.000000000 +0100
-+++ mysql-4.1.10/mysys/my_getopt.c     2005-03-04 10:52:33.000000000 +0100
-@@ -34,7 +34,7 @@
- static ulonglong getopt_ull(char *arg, const struct my_option *optp,
-                           int *err);
- static void init_variables(const struct my_option *options);
--static int setval(const struct my_option *opts, gptr *value, char *argument,
-+static int setval(const struct my_option *opts, gptr value, char *argument,
-                 my_bool set_maximum_value);
- static char *check_struct_option(char *cur_arg, char *key_name);
-@@ -96,7 +96,7 @@
-   char **pos, **pos_end, *optend, *prev_found,
-        *opt_str, key_name[FN_REFLEN];
-   const struct my_option *optp;
--  gptr *value;
-+  gptr value;
-   int error, i;
-   LINT_INIT(opt_found);
-@@ -537,14 +537,14 @@
-   Will set the option value to given value
- */
--static int setval(const struct my_option *opts, gptr *value, char *argument,
-+static int setval(const struct my_option *opts, gptr value, char *argument,
-                 my_bool set_maximum_value)
- {
-   int err= 0;
-   if (value && argument)
-   {
--    gptr *result_pos= ((set_maximum_value) ?
-+    gptr result_pos= ((set_maximum_value) ?
-                      opts->u_max_value : value);
-     if (!result_pos)
-@@ -738,7 +738,7 @@
-     value             Pointer to variable
- */
--static void init_one_value(const struct my_option *option, gptr *variable,
-+static void init_one_value(const struct my_option *option, gptr variable,
-                          longlong value)
- {
-   switch ((option->var_type & GET_TYPE_MASK)) {
-@@ -793,12 +793,12 @@
-       set the value to default value.
-     */
-     if (options->u_max_value)
--      init_one_value(options, options->u_max_value, options->max_value);
-+      init_one_value(options, (gptr)(options->u_max_value), options->max_value);
-     if (options->value)
--      init_one_value(options, options->value, options->def_value);
-+      init_one_value(options, (gptr)(options->value), options->def_value);
-     if (options->var_type & GET_ASK_ADDR &&
-       (variable= (*getopt_get_addr)("", 0, options)))
--      init_one_value(options, variable, options->def_value);
-+      init_one_value(options, (gptr)variable, options->def_value);
-   }
- }
-@@ -898,7 +898,7 @@
-   printf("--------------------------------- -----------------------------\n");
-   for (optp= options; optp->id; optp++)
-   {
--    gptr *value= (optp->var_type & GET_ASK_ADDR ?
-+    gptr value= (optp->var_type & GET_ASK_ADDR ?
-                 (*getopt_get_addr)("", 0, optp) : optp->value);
-     if (value)
-     {
This page took 0.05372 seconds and 4 git commands to generate.