~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-12-09 17:33:02 UTC
  • mfrom: (656.1.54 devel)
  • Revision ID: brian@tangent.org-20081209173302-aptngvc7efxnatnt
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1697
1697
 
1698
1698
 
1699
1699
static const char *load_default_groups[]= {
1700
 
"mysqld","server", DRIZZLE_BASE_VERSION, 0, 0};
 
1700
"drizzled","server", DRIZZLE_BASE_VERSION, 0, 0};
1701
1701
 
1702
1702
 
1703
1703
/**
2010
2010
  if ((sys_init_connect.value= opt_init_connect))
2011
2011
    sys_init_connect.value_length= strlen(opt_init_connect);
2012
2012
  else
2013
 
    sys_init_connect.value=my_strdup("",MYF(0));
 
2013
    sys_init_connect.value=strdup("");
 
2014
  if (sys_init_connect.value == NULL)
 
2015
    return 1;
2014
2016
 
2015
2017
  sys_init_slave.value_length= 0;
2016
2018
  if ((sys_init_slave.value= opt_init_slave))
2017
2019
    sys_init_slave.value_length= strlen(opt_init_slave);
2018
2020
  else
2019
 
    sys_init_slave.value=my_strdup("",MYF(0));
 
2021
    sys_init_slave.value=strdup("");
 
2022
  if (sys_init_slave.value == NULL)
 
2023
    return 1;
2020
2024
 
2021
2025
  if (use_temp_pool && bitmap_init(&temp_pool,0,1024,1))
2022
2026
    return 1;
2151
2155
    if (ln == buf)
2152
2156
    {
2153
2157
      free(opt_bin_logname);
2154
 
      opt_bin_logname=my_strdup(buf, MYF(0));
 
2158
      opt_bin_logname=strdup(buf);
 
2159
      if (opt_bin_logname == NULL)
 
2160
      {
 
2161
        sql_print_error(_("Out of memory in init_server_components."));
 
2162
        return(1);
 
2163
      }
2155
2164
    }
2156
2165
    if (drizzle_bin_log.open_index_file(opt_binlog_index_name, ln))
2157
2166
    {
3830
3839
  if (!default_collation_name)
3831
3840
    default_collation_name= (char*) default_charset_info->name;
3832
3841
  print_version();
3833
 
  puts(_("Copyright (C) 2000 MySQL AB, by Monty and others\n"
 
3842
  puts(_("Copyright (C) 2008 Sun Microsystems\n"
3834
3843
         "This software comes with ABSOLUTELY NO WARRANTY. "
3835
3844
         "This is free software,\n"
3836
3845
         "and you are welcome to modify and redistribute it under the GPL "
4390
4399
    exit(1);
4391
4400
  if (!slave_load_tmpdir)
4392
4401
  {
4393
 
    if (!(slave_load_tmpdir = (char*) my_strdup(drizzle_tmpdir, MYF(MY_FAE))))
 
4402
    if (!(slave_load_tmpdir = (char*) strdup(drizzle_tmpdir)))
4394
4403
      exit(1);
4395
4404
  }
4396
4405
  /*
4401
4410
  {
4402
4411
    convert_dirname(buff, opt_secure_file_priv, NULL);
4403
4412
    free(opt_secure_file_priv);
4404
 
    opt_secure_file_priv= my_strdup(buff, MYF(MY_FAE));
 
4413
    opt_secure_file_priv= strdup(buff);
 
4414
    if (opt_secure_file_priv == NULL)
 
4415
      exit(1);
4405
4416
  }
4406
4417
}
4407
4418