From 9d88f4e66830ad2c4291d523254dfc499031d85c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Wed, 21 Apr 2010 22:08:16 +0000 Subject: [PATCH] * headers_euid() ooops, 'T' is a string! --- citadel/msgbase.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/citadel/msgbase.c b/citadel/msgbase.c index af3b4c6f5..8f13a44d9 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -309,10 +309,10 @@ void headers_euid(long msgnum, void *userdata) return; } - cprintf("%ld|%s|%ld\n", + cprintf("%ld|%s|%s\n", msgnum, (msg->cm_fields['E'] ? msg->cm_fields['E'] : ""), - msg->cm_fields['T']); + (msg->cm_fields['T'] ? msg->cm_fields['T'] : "0")); CtdlFreeMessage(msg); } -- 2.39.2