diff --git a/checkin_notes b/checkin_notes index e660acc3ae..06c0cc0d2e 100755 --- a/checkin_notes +++ b/checkin_notes @@ -14701,7 +14701,11 @@ Brian 6 July 2004 pers_file_xfer.C,h scheduler_op.C,h - - +Daniel 2004-07-06 + - client: when a project fails to attach, call quit_activities() + before exit(1) so other running apps will terminate. + + client/ + main.C diff --git a/client/main.C b/client/main.C index 4df911ff5f..17fd6b4b8a 100644 --- a/client/main.C +++ b/client/main.C @@ -72,6 +72,7 @@ void project_add_failed(PROJECT* project) { ); } gstate.detach_project(project); + gstate.quit_activities(); exit(1); }