diff options
Diffstat (limited to 'em-format/em-format.c')
-rw-r--r-- | em-format/em-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/em-format/em-format.c b/em-format/em-format.c index 4647a70a79..71740b34c4 100644 --- a/em-format/em-format.c +++ b/em-format/em-format.c @@ -271,7 +271,7 @@ emf_format_secure (EMFormat *emf, if (emf->valid == NULL) { emf->valid = valid; } else { - camel_dlist_addtail (&emf->valid_parent->children, (CamelDListNode *) valid); + g_queue_push_tail (&emf->valid_parent->children, valid); camel_cipher_validity_envelope (emf->valid_parent, valid); } |