From d3519c88bf18df470a2cc35286448181e1544cbb Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Fri, 10 Aug 2007 10:59:33 -0700 Subject: [PATCH] Include segment checksums as "Checksums" not "Checksum-File" in descriptor. Avoid the use of a dash in a key name in the descriptor file, since it is not well-tesetd with the various tools. --- scandir.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scandir.cc b/scandir.cc index 9075e51..d91701f 100644 --- a/scandir.cc +++ b/scandir.cc @@ -778,7 +778,7 @@ int main(int argc, char *argv[]) SHA1Checksum checksum_csum; if (checksum_csum.process_file(checksum_filename.c_str())) { - descriptor << "Checksum-File: " << checksum_csum.checksum_str() << "\n"; + descriptor << "Checksums: " << checksum_csum.checksum_str() << "\n"; } descriptor << "Segments:\n"; -- 2.20.1