# # # patch "ChangeLog" # from [23816ab3fe1a744367ebe0d47e2c05bcb67aef04] # to [024446fb224c6bcc087347e52651660963065c5e] # # patch "netsync.cc" # from [7ddbe4aa2449dabc5d76deee5629647d49a04d08] # to [2ac0562902b0f3554e1ce04fd9d3d62ec4576a0e] # ============================================================ --- ChangeLog 23816ab3fe1a744367ebe0d47e2c05bcb67aef04 +++ ChangeLog 024446fb224c6bcc087347e52651660963065c5e @@ -1,3 +1,8 @@ +2006-02-27 Benoît Dejean + + * netsync.cc: Fixed string surgery. + One more string for i18n. + 2006-02-27 Richard Levitte * po/sv.po: More translations. ============================================================ --- netsync.cc 7ddbe4aa2449dabc5d76deee5629647d49a04d08 +++ netsync.cc 2ac0562902b0f3554e1ce04fd9d3d62ec4576a0e @@ -2612,7 +2612,7 @@ const char *name = addr.get_name(); P(F("beginning service on %s : %s\n") - % (name != NULL ? name : "all interfaces") + % (name != NULL ? name : _("")) % lexical_cast(addr.get_port())); map > sessions; @@ -2907,14 +2907,14 @@ { if (include_pattern().find_first_of("'\"") != std::string::npos) { - W(F("include branch pattern contains a quote character:\n")); - W(F("%s\n") % include_pattern()); + W(F("include branch pattern contains a quote character:\n" + "%s\n") % include_pattern()); } if (exclude_pattern().find_first_of("'\"") != std::string::npos) { - W(F("exclude branch pattern contains a quote character:\n")); - W(F("%s\n") % exclude_pattern()); + W(F("exclude branch pattern contains a quote character:\n" + "%s\n") % exclude_pattern()); } try