From: Eric Bollengier Date: Thu, 10 Dec 2020 12:14:49 +0000 (+0100) Subject: Fix #7165 About incorrect JSON output for SHA256/SHA512 option X-Git-Tag: Release-11.0.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa2add1e79543681ed9d0bb45f9e673d01f114f6;p=thirdparty%2Fbacula.git Fix #7165 About incorrect JSON output for SHA256/SHA512 option --- diff --git a/bacula/src/dird/inc_conf.c b/bacula/src/dird/inc_conf.c index cde6465da..902d0b224 100644 --- a/bacula/src/dird/inc_conf.c +++ b/bacula/src/dird/inc_conf.c @@ -188,9 +188,9 @@ s_kw FS_option_kw[] = { */ struct s_fs_opt FS_options[] = { {"Md5", INC_KW_DIGEST, "M"}, - {"Sha1", INC_KW_DIGEST, "S"}, {"Sha256", INC_KW_DIGEST, "S2"}, {"Sha512", INC_KW_DIGEST, "S3"}, + {"Sha1", INC_KW_DIGEST, "S"}, {"Gzip", INC_KW_COMPRESSION, "Z6"}, {"Gzip1", INC_KW_COMPRESSION, "Z1"}, {"Gzip2", INC_KW_COMPRESSION, "Z2"},