if (rcpt_count == 0)
msg_fatal_status(EX_USAGE, (flags & SM_FLAG_XRCPT) ?
"%s(%ld): No recipient addresses found in message header" :
- "Recipient addresses must be specified on"
+ "%s(%ld): Recipient addresses must be specified on"
" the command line or via the -t option",
saved_sender, (long) uid);
/*
* Print a range only when the numbers differ.
*/
- vstring_sprintf(result, first == last ? "%ld" : "%ld-%ld",
- (long) first, (long) last);
+ if (first == last)
+ vstring_sprintf(result, "%ld", (long) first);
+ else
+ vstring_sprintf(result, "%ld-%ld", (long) first, (long) last);
return (vstring_str(result));
}