From d52aba0ec3bd070d4e3ec2ff97c506f780783933 Mon Sep 17 00:00:00 2001 From: Eric Bollengier Date: Fri, 23 May 2008 20:58:10 +0000 Subject: [PATCH] ebl Add patch for #1091 git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/branches/Branch-2.2@7012 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/patches/2.2.8-estimate-output.patch | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 bacula/patches/2.2.8-estimate-output.patch diff --git a/bacula/patches/2.2.8-estimate-output.patch b/bacula/patches/2.2.8-estimate-output.patch new file mode 100644 index 0000000000..d0539ae8c7 --- /dev/null +++ b/bacula/patches/2.2.8-estimate-output.patch @@ -0,0 +1,27 @@ + + This patch fixes bug #1091 about wrong output in estimate + command. + + Apply the patch to 2.2.8 (and possibly any 2.2.x version with): + + cd + patch -p0 <2.2.8-estimate-output.patch + ./configure + make + ... + make install + + +Index: src/dird/ua_cmds.c +=================================================================== +--- src/dird/ua_cmds.c (révision 7010) ++++ src/dird/ua_cmds.c (copie de travail) +@@ -1158,7 +1158,7 @@ + get_level_since_time(ua->jcr, since, sizeof(since)); + + ua->send_msg(_("Connecting to Client %s at %s:%d\n"), +- job->client->name(), job->client->address, job->client->FDport); ++ jcr->client->name(), jcr->client->address, jcr->client->FDport); + if (!connect_to_file_daemon(jcr, 1, 15, 0)) { + ua->error_msg(_("Failed to connect to Client.\n")); + return 1; -- 2.39.5