~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Monty Taylor
  • Date: 2010-11-13 01:53:23 UTC
  • mto: (1931.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1932.
  • Revision ID: mordred@inaugust.com-20101113015323-2msrg3vjlihdlpl6
Make sure we pop the pid-file path out to an absolute path in fix_paths,
else the chdir() will screw us up later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2352
2352
    pid_file_path= getDataHome();
2353
2353
    pid_file_path /= pid_file;
2354
2354
  }
2355
 
  pid_file= pid_file_path;
 
2355
  pid_file= fs::system_complete(pid_file_path);
2356
2356
 
2357
2357
  if (not opt_help)
2358
2358
  {