diff options
author | lkoeller <lkoeller@FreeBSD.org> | 2004-03-10 04:18:41 +0800 |
---|---|---|
committer | lkoeller <lkoeller@FreeBSD.org> | 2004-03-10 04:18:41 +0800 |
commit | 4844c728b7c4a66a449b7ebf7c66d0920ec0c5dc (patch) | |
tree | 1b499d0f39328c9d3325c644e2cbcb5a65f42093 /sysutils/bacula-server | |
parent | 3e2add8377e13e2ed8b1d3f718fd85b04d15d989 (diff) | |
download | freebsd-ports-gnome-4844c728b7c4a66a449b7ebf7c66d0920ec0c5dc.tar.gz freebsd-ports-gnome-4844c728b7c4a66a449b7ebf7c66d0920ec0c5dc.tar.zst freebsd-ports-gnome-4844c728b7c4a66a449b7ebf7c66d0920ec0c5dc.zip |
o) Update to 1.32f-5 with a lot of fixed bugs
Diffstat (limited to 'sysutils/bacula-server')
-rw-r--r-- | sysutils/bacula-server/Makefile | 4 | ||||
-rw-r--r-- | sysutils/bacula-server/distinfo | 3 | ||||
-rw-r--r-- | sysutils/bacula-server/files/patch-var.c-alpha | 12 |
3 files changed, 10 insertions, 9 deletions
diff --git a/sysutils/bacula-server/Makefile b/sysutils/bacula-server/Makefile index f7599efd3bb1..874154c98e3b 100644 --- a/sysutils/bacula-server/Makefile +++ b/sysutils/bacula-server/Makefile @@ -6,12 +6,12 @@ # PORTNAME= bacula -PORTVERSION= 1.32f4 +PORTVERSION= 1.32f5 #PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= bacula -DISTNAME= ${PORTNAME}-1.32f-4 +DISTNAME= ${PORTNAME}-1.32f-5 MAINTAINER= Lars.Koeller@Uni-Bielefeld.DE COMMENT= The network backup solution diff --git a/sysutils/bacula-server/distinfo b/sysutils/bacula-server/distinfo index 27605294901a..1a9abf2b4aeb 100644 --- a/sysutils/bacula-server/distinfo +++ b/sysutils/bacula-server/distinfo @@ -1 +1,2 @@ -MD5 (bacula-1.32f-4.tar.gz) = 7880dc20db5c9833dcecb29e31a631a5 +MD5 (bacula-1.32f-5.tar.gz) = 20fe32f7849723c8717ba59121eb6f99 +SIZE (bacula-1.32f-5.tar.gz) = 3337763 diff --git a/sysutils/bacula-server/files/patch-var.c-alpha b/sysutils/bacula-server/files/patch-var.c-alpha index 3597116ede1d..dcad5d9363d5 100644 --- a/sysutils/bacula-server/files/patch-var.c-alpha +++ b/sysutils/bacula-server/files/patch-var.c-alpha @@ -1,11 +1,11 @@ -*** src/lib/var.c.orig Sun Feb 8 18:38:44 2004 ---- src/lib/var.c Sun Feb 8 18:39:48 2004 +*** src/lib/var.c.orig Tue Mar 9 21:11:30 2004 +--- src/lib/var.c Tue Mar 9 21:12:46 2004 *************** *** 120,126 **** int n; int bytes; -! if (format == NULL || ap == NULL) +! if (format == NULL) return -1; bytes = 0; while (*format != '\0') { @@ -13,7 +13,7 @@ int n; int bytes; -! if (format == NULL) +! if (format == NULL || ap == NULL) return -1; bytes = 0; while (*format != '\0') { @@ -22,7 +22,7 @@ int n; var_mvsnprintf_cb_t ctx; -! if (format == NULL || ap == NULL) +! if (format == NULL) return -1; if (buffer != NULL && bufsize == 0) return -1; @@ -30,7 +30,7 @@ int n; var_mvsnprintf_cb_t ctx; -! if (format == NULL) +! if (format == NULL || ap == NULL) return -1; if (buffer != NULL && bufsize == 0) return -1; |