aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-info.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bpkg/rep-info.cxx')
-rw-r--r--bpkg/rep-info.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/rep-info.cxx b/bpkg/rep-info.cxx
index 128951a..9fc7676 100644
--- a/bpkg/rep-info.cxx
+++ b/bpkg/rep-info.cxx
@@ -102,7 +102,7 @@ namespace bpkg
if (cert != nullptr)
cout << "CN=" << cert->name << "/O=" << cert->organization <<
"/" << cert->email << endl
- << sha256_to_fingerprint (cert->fingerprint) << endl;
+ << cert->fingerprint << endl;
}
else
{
@@ -112,7 +112,7 @@ namespace bpkg
if (o.cert_fingerprint ())
{
if (cert != nullptr)
- cout << sha256_to_fingerprint (cert->fingerprint);
+ cout << cert->fingerprint;
cout << endl;
}