kes Add a bit of VSS info to status client.
kes Make a gross first cut of Vista VSS, using Win2003 code.
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@5062
91ce42f0-d328-0410-95d8-
f526ca767f89
Dmsg2(100, "rt=%s adj=%s\n", edit_uint64(rt, ed1), edit_uint64(bt_adj, ed2));
adj = btime_to_utime(bt_adj);
since_time += adj; /* adjust for clock difference */
- if (adj != 0) {
+ /* Don't notify if time within 3 seconds */
+ if (adj > 3 || adj < -3) {
int type;
if (adj > 600 || adj < -600) {
type = M_WARNING;
if (!privs) {
privs = enable_backup_privileges(NULL, 1);
}
- len = Mmsg(msg, "Priv 0x%x\n", privs);
+ len = Mmsg(msg, "VSS=%s Priv 0x%x\n", g_pVSSClient?"yes":"no", privs);
sendit(msg.c_str(), len, arg);
len = Mmsg(msg, "APIs=%sOPT,%sATP,%sLPV,%sCFA,%sCFW,\n",
p_OpenProcessToken?"":"!",
*/
#undef VERSION
-#define VERSION "2.1.20"
-#define BDATE "20 June 2007"
-#define LSMDATE "20Jun07"
+#define VERSION "2.1.21"
+#define BDATE "21 June 2007"
+#define LSMDATE "21Jun07"
#define PROG_COPYRIGHT "Copyright (C) %d-2007 Free Software Foundation Europe e.V.\n"
#define BYEAR "2007" /* year for copyright messages in progs */
Technical notes on version 2.1
General:
+21Jun07
+kes Don't print clock skew message in FD if less than 3 seconds diff.
+kes Add a bit of VSS info to status client.
+kes Make a gross first cut of Vista VSS, using Win2003 code.
+
+Release: 2.1.18 beta
20Jun07
kes Fixed bug #886 (multidrive autochanger: SD doesn't use drive with
loaded tape but uses first drive).