# # # patch "ChangeLog" # from [c1ef2c3fc2b7dac77d289cd8d743cd96c7435a79] # to [22f4b4c7ddda6fbc2b9ad59c5f23c7e770b81622] # # patch "commands.cc" # from [4b23e9800aef74df2fc0b08772282a8d164c76c2] # to [981960f6974af94a4f65c7a07441ee6cea47a677] # ============================================================ --- ChangeLog c1ef2c3fc2b7dac77d289cd8d743cd96c7435a79 +++ ChangeLog 22f4b4c7ddda6fbc2b9ad59c5f23c7e770b81622 @@ -1,3 +1,7 @@ +2006-02-21 Matt Johnston + + * commands.cc (pid_file): newline-terminate the pid + 2006-02-21 Richard Levitte * contrib/usher.cc (server::set_hosts): Erasing the list node that ============================================================ --- commands.cc 4b23e9800aef74df2fc0b08772282a8d164c76c2 +++ commands.cc 981960f6974af94a4f65c7a07441ee6cea47a677 @@ -300,7 +300,7 @@ return; require_path_is_nonexistent(path, F("pid file '%s' already exists") % path); file.open(path.as_external().c_str()); - file << get_process_id(); + file << get_process_id() << endl; file.flush(); }