Index: diplhand.c =================================================================== RCS file: /home/freeciv/CVS/freeciv/server/diplhand.c,v retrieving revision 1.45 diff -c -r1.45 diplhand.c *** diplhand.c 2001/05/30 19:01:29 1.45 --- diplhand.c 2001/06/21 10:08:00 *************** *** 242,247 **** --- 242,248 ---- "Treaty canceled!"), get_nation_name_plural(other->nation)); goto cleanup; + break; } if (pcity->owner != other->player_no) { notify_player(plr0, *************** *** 378,386 **** case CLAUSE_VISION: give_shared_vision(pgiver, pdest); notify_player(pgiver, _("Game: You give shared vision to %s."), - pdest->name); - notify_player(pgiver, _("Game: %s gives you shared vision."), pdest->name); break; } --- 379,387 ---- case CLAUSE_VISION: give_shared_vision(pgiver, pdest); notify_player(pgiver, _("Game: You give shared vision to %s."), pdest->name); + notify_player(pdest, _("Game: %s gives you shared vision."), + pgiver->name); break; }