rspamd: update to 1.0.2.
This commit is contained in:
parent
d79f30ab69
commit
13baa0602b
2 changed files with 3 additions and 30 deletions
|
@ -1,27 +0,0 @@
|
|||
From f10b11ddf685392b18218f6003e2eb3b6295dfd3 Mon Sep 17 00:00:00 2001
|
||||
From: Vsevolod Stakhov <vsevolod@highsecure.ru>
|
||||
Date: Wed, 23 Sep 2015 13:43:59 +0100
|
||||
Subject: [PATCH] Fix issue with va_list passing.
|
||||
|
||||
Issue: #379
|
||||
Reported by: @Gottox
|
||||
---
|
||||
src/libutil/logger.c | 5 +++--
|
||||
1 file changed, 3 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/libutil/logger.c b/src/libutil/logger.c
|
||||
index 65cb67c..105b593 100644
|
||||
--- src/libutil/logger.c
|
||||
+++ src/libutil/logger.c
|
||||
@@ -923,8 +923,9 @@ rspamd_glib_log_function (const gchar *log_domain,
|
||||
void
|
||||
rspamd_glib_printerr_function (const gchar *message)
|
||||
{
|
||||
- rspamd_common_logv (NULL, G_LOG_LEVEL_CRITICAL, "glib", NULL, G_STRFUNC,
|
||||
- message, NULL);
|
||||
+ rspamd_common_log_function (NULL, G_LOG_LEVEL_CRITICAL, "glib",
|
||||
+ NULL, G_STRFUNC,
|
||||
+ "%s", message);
|
||||
}
|
||||
|
||||
/**
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'rspamd'
|
||||
pkgname=rspamd
|
||||
version=1.0.1
|
||||
revision=2
|
||||
version=1.0.2
|
||||
revision=1
|
||||
build_style=cmake
|
||||
configure_args="
|
||||
-DRSPAMD_USER=rspamd \
|
||||
|
@ -14,7 +14,7 @@ maintainer="Enno Boland <gottox@voidlinux.eu>"
|
|||
license="BSD"
|
||||
homepage="http://rspamd.com/"
|
||||
distfiles="http://rspamd.com/downloads/rspamd-${version}.tar.xz"
|
||||
checksum=d6f5dc28c63b520e8814d5554841cfd6f153d2020e1a1d3a6ef523995e55d070
|
||||
checksum=d204232d56165631c56e7eb7dfc1b5146572ed47781baf4363b63db2a1f86851
|
||||
system_accounts="rspamd"
|
||||
rspamd_homedir="/var/lib/rspamd"
|
||||
conf_files="
|
||||
|
|
Loading…
Reference in a new issue