ref: ff9930501f1a221554edcec645bf9a0919ec415a
parent: 5d8273916e7687376b8141f6eb6066e40a08c3ad
author: Ori Bernstein <ori@eigenstate.org>
date: Fri Jan 29 13:29:01 EST 2021
Mail: fix inverted reply-all condition
--- a/sys/src/cmd/upas/Mail/mesg.c
+++ b/sys/src/cmd/upas/Mail/mesg.c
@@ -300,7 +300,7 @@
static void
reply(Mesg *m, char **f, int nf)
{
- if(nf >= 1 && strcmp(f[0], "all") != 0)
+ if(nf >= 1 && strcmp(f[0], "all") == 0)
compose(m->replyto, m, 1);
else
compose(m->replyto, m, 0);
--
⑨