]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
fixup: fix task for `lib-dict: remove dict_append()'
authorBaofeng Wang <baofeng.wang@dovecot.fi>
Thu, 21 Apr 2016 13:02:39 +0000 (16:02 +0300)
committerBaofeng Wang <baofeng.wang@dovecot.fi>
Thu, 21 Apr 2016 13:03:43 +0000 (16:03 +0300)
src/lib-dict/dict-db.c
src/lib-dict/dict-fs.c
src/lib-dict/dict-memcached.c

index 729824b5f495ba885d3817199c56f9bd5bc37711..783b5d1193b015ddf9506b79512bd7a375f39a15 100644 (file)
@@ -477,7 +477,8 @@ struct dict dict_driver_db = {
                db_dict_transaction_rollback,
                db_dict_set,
                db_dict_unset,
-               db_dict_atomic_inc
+               db_dict_atomic_inc,
+               NULL
        }
 };
 #endif
index ac951b9f5792d095bf9589971471b5f04ff59529..93d34d0f3d8410c38d475f0aa374d8daaa7e2b58 100644 (file)
@@ -284,7 +284,6 @@ struct dict dict_driver_fs = {
                dict_transaction_memory_set,
                dict_transaction_memory_unset,
                NULL,
-               NULL,
                NULL
        }
 };
index e3bd6067fe4206b00eaaeb86b3800a2e04e53e77..fd1cf1782b299cc2c23e16f66cc855d74685e551 100644 (file)
@@ -390,7 +390,6 @@ struct dict dict_driver_memcached = {
                NULL,
                NULL,
                NULL,
-               NULL,
                NULL
        }
 };