From: Paul Mangan Date: Sat, 17 May 2003 10:45:24 +0000 (+0000) Subject: remove unnecessary debug_print X-Git-Tag: rel_0_9_0~31 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=597bb385ebeb212ee0cff441d84190cdc0a7e7b2 remove unnecessary debug_print --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 114ab3307..33f6d1816 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2003-05-17 [paul] 0.8.11claws159 + + * src/plugins/clamav/clamav_plugin.c + remove unnecessary debug_print + 2003-05-16 [thorsten] 0.8.11claws158 * src/plugins/demo.c diff --git a/configure.ac b/configure.ac index 01ebb18ba..871e57445 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ MINOR_VERSION=8 MICRO_VERSION=11 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws158 +EXTRA_VERSION=claws159 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/plugins/clamav/clamav_plugin.c b/src/plugins/clamav/clamav_plugin.c index 0a080e45d..bbbed00ef 100644 --- a/src/plugins/clamav/clamav_plugin.c +++ b/src/plugins/clamav/clamav_plugin.c @@ -81,7 +81,6 @@ static gboolean mail_filtering_hook(gpointer source, gpointer data) int ret, no; unsigned long int size; - long double kb; char *virname; struct cl_node *root = NULL; struct cl_limits limits; @@ -154,9 +153,6 @@ static gboolean mail_filtering_hook(gpointer source, gpointer data) debug_print("Error: %s\n", cl_perror(ret)); } - kb = size * (CL_COUNT_PRECISION / 1024); - debug_print("Data scanned: %2.2Lf Kb\n", kb); - unlink(outfile); if (is_infected) break; @@ -165,7 +161,6 @@ static gboolean mail_filtering_hook(gpointer source, gpointer data) } if (is_infected) { - debug_print("message part(s) infected with %s\n", virname); if (config.clamav_recv_infected) { FolderItem *clamav_save_folder;