summaryrefslogtreecommitdiff
path: root/src/mint-tools/taler-mint-keyup.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-06-18 14:04:42 +0200
committerChristian Grothoff <christian@grothoff.org>2015-06-18 14:04:42 +0200
commitb696e1db1d1fb266e9ae29c1aea74c6d0d38546c (patch)
tree22fa27c2ad93d678e588250ee108a189ff9613cf /src/mint-tools/taler-mint-keyup.c
parentd589293557115910482af2c89cd6c5df5a10cd30 (diff)
downloadexchange-b696e1db1d1fb266e9ae29c1aea74c6d0d38546c.tar.gz
exchange-b696e1db1d1fb266e9ae29c1aea74c6d0d38546c.tar.bz2
exchange-b696e1db1d1fb266e9ae29c1aea74c6d0d38546c.zip
fix range check, make messages clearer
Diffstat (limited to 'src/mint-tools/taler-mint-keyup.c')
-rw-r--r--src/mint-tools/taler-mint-keyup.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mint-tools/taler-mint-keyup.c b/src/mint-tools/taler-mint-keyup.c
index 70c664433..5eff6f58a 100644
--- a/src/mint-tools/taler-mint-keyup.c
+++ b/src/mint-tools/taler-mint-keyup.c
@@ -502,12 +502,13 @@ mint_keys_update_signkeys ()
"legal_duration",
&legal_duration))
{
- GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+ GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
"mint_keys",
- "legal_duration");
+ "legal_duration",
+ "fails to specify valid timeframe");
return GNUNET_SYSERR;
}
- if (signkey_duration.rel_value_us < legal_duration.rel_value_us)
+ if (signkey_duration.rel_value_us > legal_duration.rel_value_us)
{
GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
"mint_keys",