From b84cc0c241950895bd61603f73755b67a47af95b Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sun, 23 Sep 2007 19:30:11 +0000 Subject: [PATCH] Edit FD name in connect error messages. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5633 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/dird/fd_cmds.c | 6 ++++-- bacula/technotes-2.3 | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/bacula/src/dird/fd_cmds.c b/bacula/src/dird/fd_cmds.c index 45b7fa7eb1..36824c0dda 100644 --- a/bacula/src/dird/fd_cmds.c +++ b/bacula/src/dird/fd_cmds.c @@ -90,9 +90,11 @@ int connect_to_file_daemon(JCR *jcr, int retry_interval, int max_retry_time, } if (!jcr->file_bsock) { + char name[MAX_NAME_LENGTH + 100]; + bstrncpy(name, _("Client: "), sizeof(name)); + bstrncat(name, jcr->client->name(), sizeof(name)); fd = bnet_connect(jcr, retry_interval, max_retry_time, heart_beat, - _("File daemon"), jcr->client->address, - NULL, jcr->client->FDport, verbose); + name, jcr->client->address, NULL, jcr->client->FDport, verbose); if (fd == NULL) { set_jcr_job_status(jcr, JS_ErrorTerminated); return 0; diff --git a/bacula/technotes-2.3 b/bacula/technotes-2.3 index 69ce06e069..e3e7b26029 100644 --- a/bacula/technotes-2.3 +++ b/bacula/technotes-2.3 @@ -2,6 +2,7 @@ General: 23Sep07 +kes Edit FD name in connect error messages. kes Rework the reservation system to take into account that the Director might give us a Volume that is different from the current one being used, and to ensure that we don't exceed Maximum Volume Jobs. -- 2.39.5