[Commits] [SCM] claws branch, master, updated. 3.9.3-80-g03b8706
miras at claws-mail.org
miras at claws-mail.org
Tue Apr 22 02:51:11 CEST 2014
The branch master of project "claws" (Claws Mail) has been updated
via 03b87062150026a55495fa2814f256886f84f848 (commit)
from 8b9a9329b104f4b3581fe1f18e7c4b644134be25 (commit)
- Log -----------------------------------------------------------------
commit 03b87062150026a55495fa2814f256886f84f848
Author: Michael Rasmussen <mir at datanom.net>
Date: Tue Apr 22 02:51:04 2014 +0200
Fix bug in string thanks to Mones
diff --git a/src/plugins/clamd/clamav_plugin.c b/src/plugins/clamd/clamav_plugin.c
index 87a8fb7..45f2fb3 100644
--- a/src/plugins/clamd/clamav_plugin.c
+++ b/src/plugins/clamd/clamav_plugin.c
@@ -143,8 +143,7 @@ static gboolean scan_func(GNode *node, gpointer data)
}
}
else {
- msg = g_strconcat(_("File: %s. Size (%d) greater than limit (%d)\n"),
- outfile, (int) info.st_size, max);
+ msg = g_strdup_printf(_("File: %s. Size (%d) greater than limit (%d)\n"), outfile, (int) info.st_size, max);
statusbar_print_all("%s", msg);
debug_print(msg);
g_free(msg);
-----------------------------------------------------------------------
Summary of changes:
src/plugins/clamd/clamav_plugin.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list