~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/status_dictionary/status.cc

  • Committer: Brian Aker
  • Date: 2010-02-18 02:09:52 UTC
  • mto: (1273.16.6 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1304.
  • Revision ID: brian@gaz-20100218020952-g6us6ji7dqmu325n
Remove dead SHOW_ARRAY type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
103
103
      variables++;
104
104
      continue;
105
105
    }
106
 
    else if (var->type != SHOW_ARRAY)
107
 
    {
108
 
      fill(variables->name, var->value, var->type);
109
 
    }
110
 
    else
111
 
    {
112
 
      variables++;
113
 
      continue;
114
 
    }
 
106
 
 
107
    fill(variables->name, var->value, var->type);
115
108
 
116
109
    variables++;
117
110