mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
cli/crypto: eliminated compiler warnings about unused arguments
These are due to (excessively?) fancy macro definitions in gmime-extra.h
This commit is contained in:
parent
1fdc08d0ff
commit
606e320e47
2 changed files with 4 additions and 2 deletions
|
@ -151,7 +151,7 @@ set_signature_list_destructor (mime_node_t *node)
|
|||
/* Verify a signed mime node (GMime 2.6) */
|
||||
static void
|
||||
node_verify (mime_node_t *node, GMimeObject *part,
|
||||
notmuch_crypto_context_t *cryptoctx)
|
||||
g_mime_3_unused(notmuch_crypto_context_t *cryptoctx))
|
||||
{
|
||||
GError *err = NULL;
|
||||
|
||||
|
@ -172,7 +172,7 @@ node_verify (mime_node_t *node, GMimeObject *part,
|
|||
/* Decrypt and optionally verify an encrypted mime node (GMime 2.6) */
|
||||
static void
|
||||
node_decrypt_and_verify (mime_node_t *node, GMimeObject *part,
|
||||
notmuch_crypto_context_t *cryptoctx)
|
||||
g_mime_3_unused(notmuch_crypto_context_t *cryptoctx))
|
||||
{
|
||||
GError *err = NULL;
|
||||
GMimeDecryptResult *decrypt_result = NULL;
|
||||
|
|
|
@ -14,6 +14,7 @@ GMimeStream *g_mime_stream_stdout_new(void);
|
|||
#define GMIME_ADDRESS_TYPE_BCC GMIME_RECIPIENT_TYPE_BCC
|
||||
|
||||
#define g_mime_2_6_unref(obj) g_object_unref (obj)
|
||||
#define g_mime_3_unused(arg) arg
|
||||
#define g_mime_certificate_get_fpr16(cert) g_mime_certificate_get_key_id (cert)
|
||||
#define g_mime_certificate_get_uid(cert) g_mime_certificate_get_name (cert);
|
||||
#else /* GMime >= 3.0 */
|
||||
|
@ -56,6 +57,7 @@ typedef GMimeTrust GMimeCertificateTrust;
|
|||
#define GMIME_CERTIFICATE_TRUST_ULTIMATE GMIME_TRUST_ULTIMATE
|
||||
|
||||
#define g_mime_2_6_unref(obj) /*ignore*/
|
||||
#define g_mime_3_unused(arg) unused(arg)
|
||||
#endif
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue