make send return a sensible name if it is a MasterSend
This commit is contained in:
parent
13d354332e
commit
c95e44b38e
@ -91,6 +91,8 @@ Send::name_and_id_new_send (Session& s, Role r, uint32_t& bitslot, bool ignore_b
|
||||
return string_compose (_("send %1"), (bitslot = s.next_send_id ()));
|
||||
case Delivery::Foldback:
|
||||
return string_compose (_("foldback %1"), (bitslot = s.next_aux_send_id ()));
|
||||
case Delivery::MasterSend:
|
||||
return string_compose (_("master %1"), (bitslot = s.next_aux_send_id ()));
|
||||
default:
|
||||
fatal << string_compose (_("programming error: send created using role %1"), enum_2_string (r)) << endmsg;
|
||||
abort(); /*NOTREACHED*/
|
||||
|
Loading…
Reference in New Issue
Block a user