/*
Bacula(R) - The Network Backup Solution
- Copyright (C) 2000-2018 Kern Sibbald
+ Copyright (C) 2000-2019 Kern Sibbald
The original author of Bacula is Kern Sibbald, with contributions
from many others, a complete list can be found in the file AUTHORS.
}
break;
case JS_Incomplete:
- Mmsg(term_msg, _("Backup failed -- incomplete"));
+ Mmsg(term_msg, _("Backup failed -- Incomplete"));
break;
case JS_Warnings:
Mmsg(term_msg, _("Backup OK -- %s"), jcr->StatusErrMsg[0] ? jcr->StatusErrMsg : _("with warnings"));
/*
Bacula(R) - The Network Backup Solution
- Copyright (C) 2000-2015 Kern Sibbald
+ Copyright (C) 2000-2019 Kern Sibbald
The original author of Bacula is Kern Sibbald, with contributions
from many others, a complete list can be found in the file AUTHORS.
term_msg = _("Restore Canceled");
terminate_sd_msg_chan_thread(jcr);
break;
+ case JS_Incomplete:
+ term_msg = _("Restore Incomplete");
+ break;
default:
term_msg = term_code;
sprintf(term_code, _("Inappropriate term code: %c\n"), TermCode);
/*
Bacula(R) - The Network Backup Solution
- Copyright (C) 2000-2018 Kern Sibbald
+ Copyright (C) 2000-2019 Kern Sibbald
The original author of Bacula is Kern Sibbald, with contributions
from many others, a complete list can be found in the file AUTHORS.
term_msg = _("Backup Canceled");
terminate_sd_msg_chan_thread(jcr);
break;
+ case JS_Incomplete:
+ term_msg = _("Backup failed -- Incomplete");
+ break;
default:
term_msg = term_code;
sprintf(term_code, _("Inappropriate term code: %c\n"), jcr->JobStatus);