aboutsummaryrefslogtreecommitdiffstats
path: root/scd/app.c
diff options
context:
space:
mode:
Diffstat (limited to 'scd/app.c')
-rw-r--r--scd/app.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/scd/app.c b/scd/app.c
index e0b2fe6e7..51bd207ff 100644
--- a/scd/app.c
+++ b/scd/app.c
@@ -969,20 +969,20 @@ expand_pin_prompt(const char *prompt, const char *prepend, int which, ...)
switch (which)
{
- /* Signature count. */
- case PIN_SIGN_PROMPT:
- luval = va_arg (ap, unsigned long);
- snprintf (valuebuf, sizeof (valuebuf), "%lu", luval);
- token = "|S|";
- break;
- /* Pin tries remaining. */
- case PIN_ADMIN_PROMPT:
- intval = va_arg (ap, int);
- snprintf (valuebuf, sizeof (valuebuf), "%i", intval);
- token = "|A|";
- break;
- default:
- break;
+ /* Signature count. */
+ case PIN_SIGN_PROMPT:
+ luval = va_arg (ap, unsigned long);
+ snprintf (valuebuf, sizeof (valuebuf), "%lu", luval);
+ token = "|S|";
+ break;
+ /* Pin tries remaining. */
+ case PIN_ADMIN_PROMPT:
+ intval = va_arg (ap, int);
+ snprintf (valuebuf, sizeof (valuebuf), "%i", intval);
+ token = "|A|";
+ break;
+ default:
+ break;
}
va_end (ap);