From 90ea8befbeac71a65202fe28dc16350c90d310c7 Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Mon, 11 Jun 2001 14:41:26 +0000 Subject: axalon sucks, we can have NEWT_FLAG_PASSWORD that will show us '**' for passwords --- mdk-stage1/newt-frontend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdk-stage1/newt-frontend.c b/mdk-stage1/newt-frontend.c index c9f498260..1d5c1e4d6 100644 --- a/mdk-stage1/newt-frontend.c +++ b/mdk-stage1/newt-frontend.c @@ -358,7 +358,7 @@ enum return_type ask_from_entries(char *msg, char ** questions, char *** answers while (questions && *questions) { entries[i].text = *questions; - entries[i].flags = NEWT_FLAG_SCROLL | (!strcmp(*questions, "Password") ? NEWT_FLAG_HIDDEN : 0); + entries[i].flags = NEWT_FLAG_SCROLL | (!strcmp(*questions, "Password") ? NEWT_FLAG_PASSWORD : 0); i++; questions++; } -- cgit v1.2.1