View | Details | Raw Unified | Return to bug 242795
Collapse All | Expand All

(-)b/www/c-icap-modules/Makefile (-2 / +1 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	c-icap
4
PORTNAME=	c-icap
5
PORTVERSION=	0.5.3
5
PORTVERSION=	0.5.4
6
PORTREVISION=	1
7
CATEGORIES=	www security
6
CATEGORIES=	www security
8
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}${PKGNAMESUFFIX}/0.5.x/
7
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}${PKGNAMESUFFIX}/0.5.x/
9
PKGNAMESUFFIX=	-modules
8
PKGNAMESUFFIX=	-modules
(-)b/www/c-icap-modules/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1547975297
1
TIMESTAMP = 1575242090
2
SHA256 (c_icap_modules-0.5.3.tar.gz) = 6e2f87a60379ffde26947c6e82ff0c7f614bc005588bf1efb40c74f69c82f925
2
SHA256 (c_icap_modules-0.5.4.tar.gz) = 87409920c66027204e9cca5f20e137b63cd12daf6dfcd85c1fa62ab2bd1c57cc
3
SIZE (c_icap_modules-0.5.3.tar.gz) = 452505
3
SIZE (c_icap_modules-0.5.4.tar.gz) = 450411
(-)a/www/c-icap-modules/files/patch-services_virus__scan_clamav__mod.c (-30 lines)
Removed Link Here
1
--- services/virus_scan/clamav_mod.c.orig	2019-11-25 19:36:11 UTC
2
+++ services/virus_scan/clamav_mod.c
3
@@ -104,8 +104,8 @@ extern ci_off_t CLAMAV_MAXFILESIZE;
4
 extern ci_off_t CLAMAV_MAXSCANSIZE;
5
 extern char *CLAMAV_TMP;
6
 
7
-#define CLAMAV_VERSION_SIZE 64
8
-static char CLAMAV_VERSION[CLAMAV_VERSION_SIZE];
9
+#define _CLAMAV_VERSION_SIZE 64
10
+static char _CLAMAV_VERSION[_CLAMAV_VERSION_SIZE];
11
 #define CLAMAV_SIGNATURE_SIZE SERVICE_ISTAG_SIZE + 1
12
 static char CLAMAV_SIGNATURE[CLAMAV_SIGNATURE_SIZE];
13
 
14
@@ -641,13 +641,13 @@ void clamav_set_versions()
15
     CLAMAV_SIGNATURE[CLAMAV_SIGNATURE_SIZE - 1] = '\0';
16
 
17
      /*set the clamav version*/
18
-     snprintf(CLAMAV_VERSION, CLAMAV_VERSION_SIZE - 1, "%s/%d", str_version, version);
19
-     CLAMAV_VERSION[CLAMAV_VERSION_SIZE - 1] = '\0';
20
+     snprintf(_CLAMAV_VERSION, _CLAMAV_VERSION_SIZE - 1, "%s/%d", str_version, version);
21
+     _CLAMAV_VERSION[_CLAMAV_VERSION_SIZE - 1] = '\0';
22
 }
23
 
24
 const char *clamav_version()
25
 {
26
-    return CLAMAV_VERSION;
27
+    return _CLAMAV_VERSION;
28
 }
29
 
30
 const char *clamav_signature()

Return to bug 242795