Mail: fix inverted reply-all condition
This commit is contained in:
parent
bee6271ae1
commit
273c4bff7a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue