Tobias Gruetzmacher wrote:
> When using the current cryptsetup from unstable with pmount, the
> passwort prompt does not show

I think this is due to the patch in #364153.

It created the function interactive_pass() in lib/setup.c which prints the
prompt to stdout:

  write(STDOUT_FILENO, prompt, strlen(prompt));

But getpass (which was used previously) printed the prompt to stderr. So
if the above line is changed to:

  write(STDERR_FILENO, prompt, strlen(prompt));

Things should hopefully work again.

Jonas, will you prepare a fix or should I?

Regards,
David




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to