fixed off-by-one error in previous commit
[citadel.git] / ctdlsh / mailq.c
index f8978418049a3d86af55e4164528e784bee70517..772c242302e7a060fc8acbf6d65032267db5a0b7 100644 (file)
@@ -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);