~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/default_modify.c

Merged in Jay's tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  char linebuff[BUFF_SIZE], *src_ptr, *dst_ptr, *file_buffer;
66
66
  size_t opt_len= 0, optval_len= 0, sect_len;
67
67
  uint nr_newlines= 0, buffer_size;
68
 
  bool in_section= FALSE, opt_applied= 0;
 
68
  bool in_section= false, opt_applied= 0;
69
69
  uint reserve_extended;
70
70
  uint new_opt_len;
71
71
  int reserve_occupied= 0;
175
175
 
176
176
        if (*src_ptr != ']')
177
177
        {
178
 
          in_section= FALSE;
 
178
          in_section= false;
179
179
          continue; /* Missing closing parenthesis. Assume this was no group */
180
180
        }
181
181
 
182
182
        if (remove_option == MY_REMOVE_SECTION)
183
183
          dst_ptr= dst_ptr - strlen(linebuff);
184
184
 
185
 
        in_section= TRUE;
 
185
        in_section= true;
186
186
      }
187
187
      else
188
 
        in_section= FALSE; /* mark that this section is of no interest to us */
 
188
        in_section= false; /* mark that this section is of no interest to us */
189
189
    }
190
190
  }
191
191