1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00

Remove cmd_tiny, empty files and link nonce with IV

This commit is contained in:
William Wennerström 2020-12-07 16:30:03 +01:00
parent 867d895469
commit 5c5b4d7025
No known key found for this signature in database
GPG Key ID: E1382990BEDD319B
5 changed files with 3 additions and 4 deletions

View File

@ -128,7 +128,6 @@ gboolean cmd_status_get(ProfWin* window, const char* const command, gchar** args
gboolean cmd_status_set(ProfWin* window, const char* const command, gchar** args);
gboolean cmd_sub(ProfWin* window, const char* const command, gchar** args);
gboolean cmd_theme(ProfWin* window, const char* const command, gchar** args);
gboolean cmd_tiny(ProfWin* window, const char* const command, gchar** args);
gboolean cmd_wintitle(ProfWin* window, const char* const command, gchar** args);
gboolean cmd_vercheck(ProfWin* window, const char* const command, gchar** args);
gboolean cmd_who(ProfWin* window, const char* const command, gchar** args);

View File

@ -41,7 +41,7 @@
#define OMEMO_ERR_UNSUPPORTED_CRYPTO -10000
#define OMEMO_ERR_GCRYPT -20000
#define OMEMO_AESGCM_NONCE_LENGTH 12
#define OMEMO_AESGCM_NONCE_LENGTH AES128_GCM_IV_LENGTH
#define OMEMO_AESGCM_KEY_LENGTH 32
#define OMEMO_AESGCM_URL_SCHEME "aesgcm"

View File

@ -193,7 +193,7 @@ http_file_get(void* userdata)
download->url,
download->filename);
// TODO(wstrm): Log the error.
// TODO: Log the error.
if (!call_external(argv, NULL, NULL)) {
http_print_transfer_update(download->window, download->url,
"Downloading '%s' failed: Unable to call "
@ -201,7 +201,7 @@ http_file_get(void* userdata)
download->url,
download->cmd_template,
download->filename,
"TODO(wstrm): Log the error");
"TODO: Log the error");
}
g_strfreev(argv);