]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Minor code cleanup: Removed extra ';' characters.
authorTimo Sirainen <tss@iki.fi>
Wed, 19 Nov 2008 14:50:24 +0000 (16:50 +0200)
committerTimo Sirainen <tss@iki.fi>
Wed, 19 Nov 2008 14:50:24 +0000 (16:50 +0200)
--HG--
branch : HEAD

src/lib-storage/index/index-mail.c
src/lib/hash.c
src/plugins/acl/acl-mailbox-list.c

index e9887b4389a250747b37a5e133544519bea9f528..13935437cfb1e934eaccd094d90562753783c0fa 100644 (file)
@@ -1261,7 +1261,7 @@ void index_mail_set_seq(struct mail *_mail, uint32_t seq)
                if (mail_cache_field_exists(cache_view, seq,
                                            cache_field) <= 0) {
                        data->access_part |= PARSE_HDR;
-                       data->save_sent_date = TRUE;;
+                       data->save_sent_date = TRUE;
                }
        }
 
index a378a7e015d9111839f30f374fc01df8f3ae6679..0a3a52f52da08b72aae7efa798cd7b4abf85905c 100644 (file)
@@ -250,7 +250,7 @@ hash_insert_node(struct hash_table *table, void *key, void *value,
        }
 
        node->key = key;
-       node->value = value;;
+       node->value = value;
 
        table->nodes_count++;
        return node;
index 0f11cc73e6163887f1b32aab44faa305b4196a40..06a300abca81b452470d45a75311f1705cf5432d 100644 (file)
@@ -94,7 +94,7 @@ acl_mailbox_try_list_fast(struct acl_mailbox_list_iterate_context *ctx,
        update_ctx.iter_ctx = &ctx->ctx;
        update_ctx.glob =
                imap_match_init_multiple(pool_datastack_create(), patterns,
-                                        TRUE, sep);;
+                                        TRUE, sep);
        update_ctx.match_parents = TRUE;
 
        for (try = 0; try < 2; try++) {