projects
/
citadel
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c3fce1
)
fixed off-by-one error in previous commit
author
Art Cancro
<ajc@citadel.org>
Thu, 23 Mar 2017 20:30:44 +0000
(16:30 -0400)
committer
Art Cancro
<ajc@citadel.org>
Thu, 23 Mar 2017 20:30:44 +0000
(16:30 -0400)
ctdlsh/mailq.c
patch
|
blob
|
history
diff --git
a/ctdlsh/mailq.c
b/ctdlsh/mailq.c
index
f897841
..
772c242
100644
(file)
--- a/
ctdlsh/mailq.c
+++ b/
ctdlsh/mailq.c
@@
-28,7
+28,7
@@
void mailq_show_this_queue_entry(StrBuf *MsgText) {
printf("Last delivery attempt: %s", asctime(localtime(&attempted)));
}
else if (!strncasecmp(ChrPtr(Line), HKEY("bounceto|"))) {
- printf("Sender: %s\n", ChrPtr(Line)+
10
);
+ printf("Sender: %s\n", ChrPtr(Line)+
9
);
}
else if (!strncasecmp(ChrPtr(Line), HKEY("remote|"))) {
printf("Recipient: %s\n", ChrPtr(Line)+7);