summaryrefslogtreecommitdiff
path: root/src/exchange/taler-exchange-httpd_keystate.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2019-08-01 00:24:11 +0200
committerChristian Grothoff <christian@grothoff.org>2019-08-01 00:24:11 +0200
commit8f7388042c433049b2b49c306caa80378e635c4d (patch)
tree87d1dff90a059f05349c1a326849ad4f459b8259 /src/exchange/taler-exchange-httpd_keystate.c
parent5b2efa2b0694f2e1d16af15c7c47cbd26f7c64c1 (diff)
downloadexchange-8f7388042c433049b2b49c306caa80378e635c4d.tar.gz
exchange-8f7388042c433049b2b49c306caa80378e635c4d.tar.bz2
exchange-8f7388042c433049b2b49c306caa80378e635c4d.zip
fix indent
Diffstat (limited to 'src/exchange/taler-exchange-httpd_keystate.c')
-rw-r--r--src/exchange/taler-exchange-httpd_keystate.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/exchange/taler-exchange-httpd_keystate.c b/src/exchange/taler-exchange-httpd_keystate.c
index eaa3fa496..6a69a3d55 100644
--- a/src/exchange/taler-exchange-httpd_keystate.c
+++ b/src/exchange/taler-exchange-httpd_keystate.c
@@ -1044,8 +1044,8 @@ reload_auditor_iter (void *cls,
&dke->dki->issue.properties,
sizeof (struct TALER_DenominationKeyValidityPS)))
{
- /* if the hash is the same, the properties should also match! */
- GNUNET_break (0);
+ /* if the hash is the same, the properties should also match! */
+ GNUNET_break (0);
continue;
}
as = GNUNET_malloc (sizeof (struct AuditorSignature) +
@@ -2252,14 +2252,14 @@ TEH_KS_handler_keys (struct TEH_RequestHandler *rh,
unsigned long long cherrypickn;
if (1 !=
- sscanf (have_cherrypick,
- "%llu",
- &cherrypickn))
+ sscanf (have_cherrypick,
+ "%llu",
+ &cherrypickn))
{
GNUNET_break_op (0);
return TEH_RESPONSE_reply_arg_invalid (connection,
- TALER_EC_KEYS_HAVE_NOT_NUMERIC,
- "last_issue_date");
+ TALER_EC_KEYS_HAVE_NOT_NUMERIC,
+ "last_issue_date");
}
last_issue_date.abs_value_us = (uint64_t) cherrypickn * 1000000LLU;
}
@@ -2276,14 +2276,14 @@ TEH_KS_handler_keys (struct TEH_RequestHandler *rh,
unsigned long long fakenown;
if (1 !=
- sscanf (have_fakenow,
- "%llu",
- &fakenown))
+ sscanf (have_fakenow,
+ "%llu",
+ &fakenown))
{
GNUNET_break_op (0);
return TEH_RESPONSE_reply_arg_invalid (connection,
- TALER_EC_KEYS_HAVE_NOT_NUMERIC,
- "now");
+ TALER_EC_KEYS_HAVE_NOT_NUMERIC,
+ "now");
}
now.abs_value_us = (uint64_t) fakenown * 1000000LLU;
}