diff options
author | Ori Bernstein <ori@eigenstate.org> | 2021-01-29 18:29:01 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2021-01-29 18:29:01 -0800 |
commit | 273c4bff7ae59ff33e0b58c95967397090fd3864 (patch) | |
tree | 9941314a953f826bc870e58a92a152eab7379680 | |
parent | bee6271ae1c4f50180f52f6dc11ce23337467722 (diff) | |
download | plan9front-273c4bff7ae59ff33e0b58c95967397090fd3864.tar.xz |
Mail: fix inverted reply-all condition
-rw-r--r-- | sys/src/cmd/upas/Mail/mesg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/upas/Mail/mesg.c b/sys/src/cmd/upas/Mail/mesg.c index 32dc0998a..fdcc01921 100644 --- a/sys/src/cmd/upas/Mail/mesg.c +++ b/sys/src/cmd/upas/Mail/mesg.c @@ -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); |