From: Art Cancro Date: Wed, 13 Jan 2010 04:50:31 +0000 (+0000) Subject: * Removed the extra log message now that the bug is fixed X-Git-Tag: v7.86~508 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=dcd94ca8c8c13b7da8ca5a736b0e802aa6711891;p=citadel.git * Removed the extra log message now that the bug is fixed --- diff --git a/citadel/modules/network/serv_network.c b/citadel/modules/network/serv_network.c index d73e4b7e1..c900731ed 100644 --- a/citadel/modules/network/serv_network.c +++ b/citadel/modules/network/serv_network.c @@ -4,7 +4,7 @@ * This module handles shared rooms, inter-Citadel mail, and outbound * mailing list processing. * - * Copyright (c) 2000-2009 by the citadel.org team + * Copyright (c) 2000-2010 by the citadel.org team * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -1645,8 +1645,6 @@ void network_process_message(FILE *fp, long msgstart, long msgend) { long size; char *buffer; - CtdlLogPrintf(CTDL_DEBUG, "network_process_message() processing bytes %ld through %ld\n", msgstart, msgend); - hold_pos = ftell(fp); size = msgend - msgstart + 1; buffer = malloc(size);