From: Michal Rakowski Date: Thu, 23 Dec 2021 09:53:16 +0000 (+0100) Subject: Fix #8572 About the SD capabilities info more clear X-Git-Tag: Beta-15.0.0~695 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3524bd0d6049aed86bac3937158031cc9a2f83b7;p=thirdparty%2Fbacula.git Fix #8572 About the SD capabilities info more clear --- diff --git a/bacula/src/stored/status.c b/bacula/src/stored/status.c index bc3b39c48..6b4f1746a 100644 --- a/bacula/src/stored/status.c +++ b/bacula/src/stored/status.c @@ -656,8 +656,9 @@ static void list_status_header(STATUS_PKT *sp) #else immutable = false; #endif // HAVE_IMMUTABLE_FL - len = Mmsg(msg, " Capabilities needed: %d append_only support: %d immutable support: %d\n", - got_caps_needed, append_only, immutable); + len = Mmsg(msg, " Caps: %s, %s\n", + append_only ? "APPEND_ONLY" : "!APPEND_ONLY", + immutable ? "IMMUTABLE" : "!IMMUTABLE"); sendit(msg, len, sp); }