dict-fail.c (dovecot-2.3.16) | : | dict-fail.c (dovecot-2.3.17) | ||
---|---|---|---|---|
skipping to change at line 34 | skipping to change at line 34 | |||
} | } | |||
static void dict_fail_deinit(struct dict *dict ATTR_UNUSED) | static void dict_fail_deinit(struct dict *dict ATTR_UNUSED) | |||
{ | { | |||
} | } | |||
static void dict_fail_wait(struct dict *dict ATTR_UNUSED) | static void dict_fail_wait(struct dict *dict ATTR_UNUSED) | |||
{ | { | |||
} | } | |||
static int dict_fail_lookup(struct dict *dict ATTR_UNUSED, pool_t pool ATTR_UNUS | static int dict_fail_lookup(struct dict *dict ATTR_UNUSED, | |||
ED, | const struct dict_op_settings *set ATTR_UNUSED, | |||
pool_t pool ATTR_UNUSED, | ||||
const char *key ATTR_UNUSED, const char **value_r ATT R_UNUSED, | const char *key ATTR_UNUSED, const char **value_r ATT R_UNUSED, | |||
const char **error_r) | const char **error_r) | |||
{ | { | |||
*error_r = "Unsupported operation (dict does not support this feature)"; | *error_r = "Unsupported operation (dict does not support this feature)"; | |||
return -1; | return -1; | |||
} | } | |||
static struct dict_iterate_context * | static struct dict_iterate_context * | |||
dict_fail_iterate_init(struct dict *dict ATTR_UNUSED, const char *const *paths A | dict_fail_iterate_init(struct dict *dict ATTR_UNUSED, | |||
TTR_UNUSED, | const struct dict_op_settings *set ATTR_UNUSED, | |||
const char *path ATTR_UNUSED, | ||||
enum dict_iterate_flags flags ATTR_UNUSED) | enum dict_iterate_flags flags ATTR_UNUSED) | |||
{ | { | |||
return &dict_iter_unsupported; | return &dict_iter_unsupported; | |||
} | } | |||
static bool dict_fail_iterate(struct dict_iterate_context *ctx ATTR_UNUSED, | static bool dict_fail_iterate(struct dict_iterate_context *ctx ATTR_UNUSED, | |||
const char **key_r ATTR_UNUSED, | const char **key_r ATTR_UNUSED, | |||
const char *const **values_r ATTR_UNUSED) | const char *const **values_r ATTR_UNUSED) | |||
{ | { | |||
return FALSE; | return FALSE; | |||
End of changes. 2 change blocks. | ||||
4 lines changed or deleted | 6 lines changed or added |