From: Kern Sibbald Date: Sat, 24 Mar 2007 22:04:21 +0000 (+0000) Subject: Correct Qmsg() that was not updated correctly when committing a X-Git-Tag: Release-7.0.0~6716 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9f417d760a5064919cd3820c1ea0a36fb2e922f2;p=bacula%2Fbacula Correct Qmsg() that was not updated correctly when committing a previous change (probably the recent TLS patch). git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4409 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/lib/bnet.c b/bacula/src/lib/bnet.c index e874fcee4f..1412cb0f6e 100644 --- a/bacula/src/lib/bnet.c +++ b/bacula/src/lib/bnet.c @@ -424,9 +424,9 @@ bool bnet_tls_client(TLS_CONTEXT *ctx, BSOCK * bsock, alist *verify_list) * certificate's CN. Otherwise, we use standard host/CN matching. */ if (verify_list) { if (!tls_postconnect_verify_cn(tls, verify_list)) { - Qmsg1(bsock->jcr, M_FATAL, 0, _("TLS certificate verification failed." + Qmsg1(bsock->jcr(), M_FATAL, 0, _("TLS certificate verification failed." " Peer certificate did not match a required commonName\n"), - bsock->host); + bsock->host()); goto err; } } else { diff --git a/bacula/src/version.h b/bacula/src/version.h index f2979fedd0..0633a26d94 100644 --- a/bacula/src/version.h +++ b/bacula/src/version.h @@ -4,8 +4,8 @@ #undef VERSION #define VERSION "2.1.6" -#define BDATE "22 March 2007" -#define LSMDATE "22Mar07" +#define BDATE "24 March 2007" +#define LSMDATE "24Mar07" #define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n" #define BYEAR "2007" /* year for copyright messages in progs */ diff --git a/bacula/technotes-2.1 b/bacula/technotes-2.1 index 869037f85f..3eb85e702e 100644 --- a/bacula/technotes-2.1 +++ b/bacula/technotes-2.1 @@ -1,6 +1,9 @@ Technical notes on version 2.1 General: +24Mar07 +kes Correct Qmsg() that was not updated correctly when committing a + previous change (probably the recent TLS patch). 23Mar07 kes Write new subroutine is_volume_purged() that explicitly checks if the Volume is purged, and if so marks it as such. This should