diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-19 18:44:24 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-19 18:44:24 +0000 |
commit | e288c0987a45247254fe0e501459db247ec8f72b (patch) | |
tree | 8dfd5a8167d96481860a270ba8bfeda922906c47 | |
parent | 29691edb2f18432d2bd4b07e18ba2a162408296e (diff) | |
parent | 984e521392b3f41f7cdab203e5c00f3e00e27a28 (diff) |
Merge remote-tracking branch 'upstream/master' into validPathInfo-ca-proper-datatype
-rw-r--r-- | src/libutil/hash.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc index b187249e9..c8fcdfed0 100644 --- a/src/libutil/hash.cc +++ b/src/libutil/hash.cc @@ -368,8 +368,8 @@ string printHashType(HashType ht) case htSHA256: return "sha256"; break; case htSHA512: return "sha512"; break; } - // illegal hash type enum value internally, as opposed to external input - // which should be validated with nice error message. + // illegal hash type enum value internally, as opposed to external input + // which should be validated with nice error message. abort(); } |