Mail: fix inverted reply-all condition

This commit is contained in:
Ori Bernstein 2021-01-29 18:29:01 -08:00
parent bee6271ae1
commit 273c4bff7a

View file

@ -300,7 +300,7 @@ mesgshow(Mesg *m)
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);