1
0
Fork 0

- removed output from ssl command when checking for empty password for a certificate.

This commit is contained in:
cage 2024-02-17 14:03:39 +01:00
parent b8f49eb66b
commit 162d32662e
2 changed files with 3 additions and 3 deletions

View File

@ -191,7 +191,7 @@
(text-utils:split-words cmd-args)
:input passphrase-stream
:output nil
:error t
:error nil
:wait t)))
(process-exit-success-p process))))

View File

@ -3084,8 +3084,8 @@ printed, on the main window."
(multiple-value-bind (cached-certificate cached-key cached-key-password just-created)
(gemini-client:fetch-cached-certificate url :if-does-not-exist :create)
(if (or just-created
(os-utils:ssl-key-has-empty-password-p cached-key)
cached-key-password)
cached-key-password
(os-utils:ssl-key-has-empty-password-p cached-key))
(init-window)
(progn
(flet ((on-input-complete (password)