compose.c: In function 'redraw_crypt_lines':
compose.c:113:7: warning: variable 'off' set but not used [-Wunused-but-set-variable]
Signed-off-by: Olaf Hering <olaf@aepfle.de>
static void redraw_crypt_lines (HEADER *msg)
{
- int off = 0;
-
mvaddstr (HDR_CRYPT, 0, "Security: ");
if ((WithCrypto & (APPLICATION_PGP | APPLICATION_SMIME)) == 0)
&& *SmimeCryptAlg) {
mvprintw (HDR_CRYPTINFO, 40, "%s%s", _("Encrypt with: "),
NONULL(SmimeCryptAlg));
- off = 20;
}
}