1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

core: change the message displayed when passphrase is not given on startup

This commit is contained in:
Sebastien Helleu
2013-08-02 23:18:09 +02:00
parent 5a07051f20
commit 43e3ff3b1a
13 changed files with 36 additions and 42 deletions
+2 -3
View File
@@ -574,9 +574,8 @@ secure_get_passphrase_from_user (const char *error)
if (strcmp (passphrase, " ") == 0)
{
gui_chat_printf (NULL,
_("To recover your secured data, you can issue "
"commands: \"/secure passphrase xxx\" and "
"\"/reload sec\""));
_("To recover your secured data, you can "
"use /secure decrypt (see /help secure)"));
}
else
secure_passphrase = strdup (passphrase);