1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Robert Luberda <robert@debian.org>
Date: Sun, 6 Oct 2013 10:30:36 +0200
Subject: 25 Fix confusing error
Fix an error message shown when -s, -c, or -b is used without -t
to be less confusing for users (closes: #327809, #781170).
---
main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.c b/main.c
index 86a6e06..1379687 100644
--- a/main.c
+++ b/main.c
@@ -254,7 +254,7 @@ main(int argc, char **argv)
*/
if (to == NULL && (subject != NULL || cc != NULL || bcc != NULL ||
fromaddr != NULL))
- errx(1, "You must specify direct recipients with -s, -c, -b, "
+ errx(1, "You must specify to-addr recipients when using -s, -c, -b, "
"or -r");
/*
* Block SIGINT except where we install an explicit handler for it.
|