X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmsgbase.c;h=e48dca90193a79e6d7ef841ef69bd9a355e3548b;hb=e076ea2f997f76f596a7f59defbb0867bf08035a;hp=8ae8a4d3d9b948d01f2f755aa7476ded047807a8;hpb=95d07ef1f9c12eafbe107630716d248ebe3c1c38;p=citadel.git diff --git a/citadel/msgbase.c b/citadel/msgbase.c index 8ae8a4d3d..e48dca901 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -1417,11 +1417,10 @@ int CtdlOutputMsg(long msg_num, /* message number (local) to fetch */ /* FIXME: check message id against msglist for this room */ /* - * Fetch the message from disk. If we're in any sort of headers - * only mode, request that we don't even bother loading the body - * into memory. + * Fetch the message from disk. If we're in HEADERS_FAST mode, + * request that we don't even bother loading the body into memory. */ - if ( (headers_only == HEADERS_FAST) || (headers_only == HEADERS_ONLY) ) { + if (headers_only == HEADERS_FAST) { TheMessage = CtdlFetchMessage(msg_num, 0); } else {