From 69b7cec07b80c7de9f3f129aca9c157dc77a2f38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 12 May 2006 10:13:18 +0000 Subject: [PATCH] Reshuffle the prompter types, remove the hidden field. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@17551 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/hx509/hx509.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/hx509/hx509.h b/lib/hx509/hx509.h index f8d492e79..99e19f897 100644 --- a/lib/hx509/hx509.h +++ b/lib/hx509/hx509.h @@ -63,14 +63,13 @@ struct hx509_cert_attribute_data { }; typedef enum { - HX509_PROMPT_TYPE_PASSWORD = 0x1, - HX509_PROMPT_TYPE_QUESTION = 0x2, - HX509_PROMPT_TYPE_CONFIRMATION = 0x4 + HX509_PROMPT_TYPE_PASSWORD = 0x1, /* password, hidden */ + HX509_PROMPT_TYPE_QUESTION = 0x2, /* question, not hidden */ + HX509_PROMPT_TYPE_INFO = 0x4 /* infomation, reply doesn't matter */ } hx509_prompt_type; typedef struct hx509_prompt { const char *prompt; - int hidden; hx509_prompt_type type; heim_octet_string reply; } hx509_prompt;