summaryrefslogtreecommitdiffstats
path: root/hdrline.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-05-10 13:11:59 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-05-10 13:11:59 +0000
commit5aa8ee2c93acf2cc063d86b7e11e71ab54e5a0cc (patch)
tree8d0d0110a9261b6cf05812f1d68049029c24dcc6 /hdrline.c
parent6f4390767f929403283afc6f197a9f79967f5476 (diff)
Fix %D. From Len Lattanzi <Len.Lattanzi@migration.com>.
Diffstat (limited to 'hdrline.c')
-rw-r--r--hdrline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hdrline.c b/hdrline.c
index 7c9c064f..0717261a 100644
--- a/hdrline.c
+++ b/hdrline.c
@@ -404,7 +404,7 @@ hdr_format_str (char *dest,
setlocale (LC_TIME, "C");
mutt_format_s (dest, destlen, prefix, buf2);
- if (len > 0 && op != 'd')
+ if (len > 0 && op != 'd' && op != 'D') /* Skip ending op */
src = cp + 1;
}
break;