~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sys_var.cc

  • Committer: Brian Aker
  • Date: 2011-02-27 19:43:52 UTC
  • mfrom: (2192.4.9 iter)
  • Revision ID: brian@tangent.org-20110227194352-w48j3ey8nhonecsd
MergeĀ inĀ find_ptr

Show diffs side-by-side

added added

removed removed

Lines of Context:
1430
1430
    SystemVariableMap::const_iterator iter= system_variable_map.begin();
1431
1431
    while (iter != system_variable_map.end())
1432
1432
    {
1433
 
      sys_var *var= (*iter).second;
 
1433
      sys_var *var= iter->second;
1434
1434
      show->name= var->getName().c_str();
1435
1435
      show->value= (char*) var;
1436
1436
      show->type= SHOW_SYS;
1593
1593
  SystemVariableMap::iterator iter= system_variable_map.find(lower_name);
1594
1594
  if (iter != system_variable_map.end())
1595
1595
  {
1596
 
    result= (*iter).second;
 
1596
    result= iter->second;
1597
1597
  } 
1598
1598
 
1599
1599
  if (result == NULL)