Since merge addresses can now handle arbitrary lists of parameters, we
should just use a single call instead of multiple calls in a row.
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
# Create the Cc list for replies that we'll be sending
if [ "$pcfg_reply_to_all" = "1" ]; then
# All the patch recipients will be CCed
- reply_cc="$(merge_addresses "$to" "$cc")"
- reply_cc="$(merge_addresses "$reply_cc" "$pcfg_always_cc")"
+ reply_cc="$(merge_addresses "$to" "$cc" "$pcfg_always_cc")"
reply_cc=$(strip_address "$reply_cc" "$cfg_ownmail")
else
reply_cc="$pcfg_always_cc"