From: Art Cancro Date: Thu, 23 Mar 2017 20:30:44 +0000 (-0400) Subject: fixed off-by-one error in previous commit X-Git-Tag: v939~593 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=3cfd3d25e0b77093cc49277929e795efe9593f7f fixed off-by-one error in previous commit --- diff --git a/ctdlsh/mailq.c b/ctdlsh/mailq.c index f89784180..772c24230 100644 --- 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);