~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/default.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
126
126
*/
127
127
 
128
128
int my_search_option_files(const char *conf_file, int *argc, char ***argv,
129
 
                           uint *args_used, Process_option_func func,
 
129
                           uint32_t *args_used, Process_option_func func,
130
130
                           void *func_ctx)
131
131
{
132
132
  const char **dirs, *forced_default_file, *forced_extra_defaults;
155
155
  if (my_defaults_group_suffix && func == handle_default_option)
156
156
  {
157
157
    /* Handle --defaults-group-suffix= */
158
 
    uint i;
 
158
    uint32_t i;
159
159
    const char **extra_groups;
160
 
    const uint instance_len= strlen(my_defaults_group_suffix); 
 
160
    const uint32_t instance_len= strlen(my_defaults_group_suffix); 
161
161
    struct handle_option_ctx *ctx= (struct handle_option_ctx*) func_ctx;
162
162
    char *ptr;
163
163
    TYPELIB *group= ctx->group;
169
169
    
170
170
    for (i= 0; i < group->count; i++)
171
171
    {
172
 
      uint len;
 
172
      uint32_t len;
173
173
      extra_groups[i]= group->type_names[i]; /** copy group */
174
174
      
175
175
      len= strlen(extra_groups[i]);
372
372
  DYNAMIC_ARRAY args;
373
373
  TYPELIB group;
374
374
  bool found_print_defaults= 0;
375
 
  uint args_used= 0;
 
375
  uint32_t args_used= 0;
376
376
  int error= 0;
377
377
  MEM_ROOT alloc;
378
378
  char *ptr,**res;
387
387
  if (*argc >= 2 && !strcmp(argv[0][1],"--no-defaults"))
388
388
  {
389
389
    /* remove the --no-defaults argument and return only the other arguments */
390
 
    uint i;
 
390
    uint32_t i;
391
391
    if (!(ptr=(char*) alloc_root(&alloc,sizeof(alloc)+
392
392
                                 (*argc + 1)*sizeof(char*))))
393
393
      goto err;
517
517
*/
518
518
 
519
519
static char *get_argument(const char *keyword, size_t kwlen,
520
 
                          char *ptr, char *name, uint line)
 
520
                          char *ptr, char *name, uint32_t line)
521
521
{
522
522
  char *end;
523
523
 
586
586
  static const char include_keyword[]= "include";
587
587
  const int max_recursion_level= 10;
588
588
  FILE *fp;
589
 
  uint line=0;
 
589
  uint32_t line=0;
590
590
  bool found_group=0;
591
 
  uint i;
 
591
  uint32_t i;
592
592
  MY_DIR *search_dir;
593
593
  FILEINFO *search_file;
594
594