~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/default.cc

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
 
145
145
  if (forced_extra_defaults)
146
146
    my_defaults_extra_file= (char *) forced_extra_defaults;
147
 
  
 
147
 
148
148
  if (forced_default_file)
149
149
    my_defaults_file= forced_default_file;
150
150
 
158
158
    /* Handle --defaults-group-suffix= */
159
159
    uint32_t i;
160
160
    const char **extra_groups;
161
 
    const uint32_t instance_len= strlen(my_defaults_group_suffix); 
 
161
    const uint32_t instance_len= strlen(my_defaults_group_suffix);
162
162
    struct handle_option_ctx *ctx= (struct handle_option_ctx*) func_ctx;
163
163
    char *ptr;
164
164
    TYPELIB *group= ctx->group;
165
 
    
166
 
    if (!(extra_groups= 
 
165
 
 
166
    if (!(extra_groups=
167
167
          (const char**)alloc_root(ctx->alloc,
168
168
                                   (2*group->count+1)*sizeof(char*))))
169
169
      goto err;
170
 
    
 
170
 
171
171
    for (i= 0; i < group->count; i++)
172
172
    {
173
173
      uint32_t len;
174
174
      extra_groups[i]= group->type_names[i]; /** copy group */
175
 
      
 
175
 
176
176
      len= strlen(extra_groups[i]);
177
177
      if (!(ptr= (char *)alloc_root(ctx->alloc, len+instance_len+1)))
178
178
        goto err;
179
 
      
 
179
 
180
180
      extra_groups[i+group->count]= ptr;
181
 
      
 
181
 
182
182
      /** Construct new group */
183
183
      memcpy(ptr, extra_groups[i], len);
184
184
      memcpy(ptr+len, my_defaults_group_suffix, instance_len+1);
185
185
    }
186
 
    
 
186
 
187
187
    group->count*= 2;
188
188
    group->type_names= extra_groups;
189
189
    group->type_names[group->count]= 0;
190
190
  }
191
 
  
 
191
 
192
192
  if (forced_default_file)
193
193
  {
194
194
    if ((error= search_default_file_with_ext(func, func_ctx, "", "",
356
356
   NOTES
357
357
    In case of fatal error, the function will print a warning and do
358
358
    exit(1)
359
 
 
 
359
 
360
360
    To free used memory one should call free_defaults() with the argument
361
361
    that was put in *argv
362
362
 
557
557
    search_default_file_with_ext()
558
558
    opt_handler                 Option handler function. It is used to process
559
559
                                every separate option.
560
 
    handler_ctx                 Pointer to the structure to store actual 
 
560
    handler_ctx                 Pointer to the structure to store actual
561
561
                                parameters of the function.
562
562
    dir                         directory to read
563
563
    ext                         Extension for configuration file
612
612
    /*
613
613
      Ignore world-writable regular files.
614
614
      This is mainly done to protect us to not read a file created by
615
 
      the mysqld server, but the check is still valid in most context. 
 
615
      the mysqld server, but the check is still valid in most context.
616
616
    */
617
617
    if ((stat_info.st_mode & S_IWOTH) &&
618
618
        (stat_info.st_mode & S_IFMT) == S_IFREG)
640
640
    {
641
641
      if (recursion_level >= max_recursion_level)
642
642
      {
643
 
        for (end= ptr + strlen(ptr) - 1; 
 
643
        for (end= ptr + strlen(ptr) - 1;
644
644
             my_isspace(&my_charset_utf8_general_ci, *(end - 1));
645
645
             end--)
646
646
        {}
736
736
              name,line);
737
737
      goto err;
738
738
    }
739
 
    
740
 
   
 
739
 
 
740
 
741
741
    end= remove_end_comment(ptr);
742
742
    if ((value= strchr(ptr, '=')))
743
743
      end= value;                               /* Option without argument */