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.3.2~946 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=624fe7c0d67fc58da6fc32af0afb6a302769ba4c;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 c7d97c5cf..f99203645 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"},