From: Michael Vrable Date: Fri, 10 Aug 2007 17:59:33 +0000 (-0700) Subject: Include segment checksums as "Checksums" not "Checksum-File" in descriptor. X-Git-Url: http://git.vrable.net/?p=cumulus.git;a=commitdiff_plain;h=d3519c88bf18df470a2cc35286448181e1544cbb 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. --- 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";