1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-21 23:18:00 -08:00

make usage for both mail(1) and mailx(1) fit in a 80-column display.

ok miod@ and millert@
This commit is contained in:
sobrado 2024-11-05 16:14:39 +00:00
parent 3b273202fd
commit 8ee12ed014

View File

@ -1,4 +1,4 @@
/* $OpenBSD: main.c,v 1.35 2021/01/26 18:21:47 deraadt Exp $ */
/* $OpenBSD: main.c,v 1.36 2024/11/05 16:14:39 sobrado Exp $ */
/* $NetBSD: main.c,v 1.7 1997/05/13 06:15:57 mikel Exp $ */
/*
@ -336,9 +336,9 @@ setscreensize(void)
__dead void
usage(void)
{
fprintf(stderr, "usage: %s [-dEIinv] [-b list] [-c list] "
"[-r from-addr] [-s subject] to-addr ...\n", __progname);
"[-r from-addr] [-s subject]\n"
"%*s to-addr ...\n", __progname, (int)strlen(__progname) + 7, "");
fprintf(stderr, " %s [-dEIiNnv] -f [file]\n", __progname);
fprintf(stderr, " %s [-dEIiNnv] [-u user]\n", __progname);
exit(1);