From 54d5662d5531799a93021ee4c60fad33bbbd0068 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sat, 25 Jan 2014 17:46:51 +0100 Subject: [PATCH] fmtseq: be more verbose about signatures left --- src/fmtseq.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/fmtseq.cpp b/src/fmtseq.cpp index b197b64..b0e2617 100644 --- a/src/fmtseq.cpp +++ b/src/fmtseq.cpp @@ -430,7 +430,16 @@ int privkey::sign (const bvector& hash, bvector& sig, hash_func& hf) //move to the next signature and update the cache update_privkey (*this, hf); - err ("fmtseq notice: " << sigs_remaining() << " signatures remaining"); + //start moaning at around 1% of remaining signatures + if (!sigs_remaining() ) + err ("fmtseq notice: no signatures left, " + "you should discard this key"); + else if (sigs_remaining() <= (uint) (1 << (h * l) ) / 100) + err ("fmtseq notice: only " << sigs_remaining() + << " signatures left, you should certify new keys"); + else + err ("fmtseq notice: " << sigs_remaining() + << " signatures remaining"); return 0; }