}
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;
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.