-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fiw new_master_hash() and switch back to old_master_hash()
Repeated testing proves that old_master_hash() is at least as fast as new_master_hash() and possibly even faster. new_master_hash() input file-names are not reliable, the path varies between full-path for unit-tests and partial-path for command line. This results in a failed master-hash at command line after unit-test completion. This is simply not acceptable. Trying to control the input for hashing is much easier by using cat to copy the files as-is, directly to hashing. This also uses less external binaries: Old:cat->openssl vs New:openssl->sed->openssl Signed-off-by: Richard T Bonhomme <[email protected]>
- Loading branch information
1 parent
572a4de
commit ee23ba3
Showing
1 changed file
with
24 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ee23ba3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#272 #278