diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-01 15:14:59 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2016-09-01 16:35:22 +0300 |
commit | 14eac5fa9f5fc48e51a406f85f90ee65d49c56a3 (patch) | |
tree | 985ccbc714a706b1017d24cd20aac75e7532281e | |
parent | a3cdcd275c5bcb63bf459b1fa031513ae8662ffa (diff) |
Improve diagnostics
-rw-r--r-- | bpkg/auth.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bpkg/auth.cxx b/bpkg/auth.cxx index 2c5d3d8..fbbd05f 100644 --- a/bpkg/auth.cxx +++ b/bpkg/auth.cxx @@ -501,7 +501,8 @@ namespace bpkg text << "certificate is for " << cert->name << ", \"" << cert->organization << "\" <" << cert->email << ">"; - text << "certificate SHA256 fingerprint is " << cert_fp; + text << "certificate SHA256 fingerprint:"; + text << cert_fp; } if (co.trust_no () || !yn_prompt ("trust this certificate? [y/N]", 'n')) |