From: Timo Sirainen Date: Wed, 11 Nov 2009 01:01:19 +0000 (-0500) Subject: Forgot to commit mail_storage_service_user_get_input(). X-Git-Tag: 2.0.beta1~172 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e95ba7f38b9b421287d36c6152f8a9e6b9f225b;p=thirdparty%2Fdovecot%2Fcore.git Forgot to commit mail_storage_service_user_get_input(). --HG-- branch : HEAD --- diff --git a/src/lib-storage/mail-storage-service.c b/src/lib-storage/mail-storage-service.c index ff65fc2cb5..e6d2c35add 100644 --- a/src/lib-storage/mail-storage-service.c +++ b/src/lib-storage/mail-storage-service.c @@ -880,6 +880,12 @@ void **mail_storage_service_user_get_set(struct mail_storage_service_user *user) return settings_parser_get_list(user->set_parser) + 1; } +const struct mail_storage_service_input * +mail_storage_service_user_get_input(struct mail_storage_service_user *user) +{ + return &user->input; +} + void *mail_storage_service_get_settings(struct master_service *service) { void **sets, *set; diff --git a/src/lib-storage/mail-storage-service.h b/src/lib-storage/mail-storage-service.h index 485fbae2de..bc0d14a622 100644 --- a/src/lib-storage/mail-storage-service.h +++ b/src/lib-storage/mail-storage-service.h @@ -79,6 +79,8 @@ void mail_storage_service_deinit(struct mail_storage_service_ctx **ctx); /* Return the settings pointed to by set_root parameter in _init(). The settings contain all the changes done by userdb lookups. */ void **mail_storage_service_user_get_set(struct mail_storage_service_user *user); +const struct mail_storage_service_input * +mail_storage_service_user_get_input(struct mail_storage_service_user *user); /* Return the settings pointed to by set_root parameter in _init() */ void *mail_storage_service_get_settings(struct master_service *service);