diff options
-rw-r--r-- | bpkg/auth.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/auth.cxx b/bpkg/auth.cxx index d667c01..f7dec94 100644 --- a/bpkg/auth.cxx +++ b/bpkg/auth.cxx @@ -902,7 +902,7 @@ namespace bpkg using days = chrono::duration<size_t, ratio<3600 * 24>>; days left (chrono::duration_cast<days> (cert->end_date - now)); - if (left < days (60)) + if (left < days (365)) warn << "certificate for repository " << r << " expires in less than " << left.count () + 1 << " day(s)"; |