diff options
| author | Cameron Katri <me@cameronkatri.com> | 2022-07-18 13:06:51 -0400 |
|---|---|---|
| committer | Cameron Katri <me@cameronkatri.com> | 2022-07-18 13:06:51 -0400 |
| commit | 28eb2be0ee386b8a6bd08d3ccb7cb5ef1bacd3ae (patch) | |
| tree | 97d5966bdb2c01c71a3b90757b10edddb6a0ef75 | |
| parent | d0f2a8d014cab94df4577ef2de1b34d2b91660a2 (diff) | |
| download | ldid-28eb2be0ee386b8a6bd08d3ccb7cb5ef1bacd3ae.tar.gz ldid-28eb2be0ee386b8a6bd08d3ccb7cb5ef1bacd3ae.zip | |
Fix CDHash in -h
| -rw-r--r-- | ldid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3627,7 +3627,7 @@ int main(int argc, char *argv[]) { } printf("Hash choices=%s\n", choices.c_str() + 1); - printf("CDHash=%s\n", best->second.hash_.c_str()); + printf("CDHash=%.40s\n", best->second.hash_.c_str()); if (cmsBegin != 0 && cmsEnd != 0) { // This loads the CMS blob and parses each X509 cert in the blob to extract the |
