From: Kern Sibbald Date: Fri, 10 Aug 2018 16:36:53 +0000 (+0200) Subject: Make print_ls_output identify delete files more clearly X-Git-Tag: Release-9.2.1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=002341c72fbb58e4adfee7b6a0b950a6f7619023;p=thirdparty%2Fbacula.git Make print_ls_output identify delete files more clearly --- diff --git a/bacula/src/lib/attr.c b/bacula/src/lib/attr.c index 4d5eddc42..f6868b4dd 100644 --- a/bacula/src/lib/attr.c +++ b/bacula/src/lib/attr.c @@ -262,7 +262,7 @@ void print_ls_output(JCR *jcr, ATTR *attr, int message_type /* M_RESTORED */) if (attr->type == FT_DELETED) { /* TODO: change this to get last seen values */ bsnprintf(buf, sizeof(buf), - "---------- - - - - ---------- -------- %s\n", attr->ofname); + "-*DELETED*- - - - - ---------- -------- %s\n", attr->ofname); Dmsg1(dbglvl, "%s", buf); Jmsg(jcr, message_type, 1, "%s", buf); return;