~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

Removed references to strmov and strnmov

Show diffs side-by-side

added added

removed removed

Lines of Context:
2052
2052
  }
2053
2053
  else
2054
2054
  strmake(pidfile_name, glob_hostname, sizeof(pidfile_name)-5);
2055
 
  strmov(fn_ext(pidfile_name),".pid");          // Add proper extension
 
2055
  stpcpy(fn_ext(pidfile_name),".pid");          // Add proper extension
2056
2056
 
2057
2057
  /*
2058
2058
    Add server status variables to the dynamic list of
4240
4240
  what_to_log= ~ (1L << (uint) COM_TIME);
4241
4241
  refresh_version= 1L;  /* Increments on each reload */
4242
4242
  global_query_id= thread_id= 1L;
4243
 
  strmov(server_version, MYSQL_SERVER_VERSION);
 
4243
  stpcpy(server_version, MYSQL_SERVER_VERSION);
4244
4244
  myisam_recover_options_str= "OFF";
4245
4245
  myisam_stats_method_str= "nulls_unequal";
4246
4246
  threads.empty();
4766
4766
  char *end= strxmov(server_version, MYSQL_SERVER_VERSION,
4767
4767
                     MYSQL_SERVER_SUFFIX_STR, NullS);
4768
4768
  if (opt_log || opt_slow_log || opt_bin_log)
4769
 
    strmov(end, "-log");                        // This may slow down system
 
4769
    stpcpy(end, "-log");                        // This may slow down system
4770
4770
}
4771
4771
 
4772
4772