]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Forgot to commit mail_storage_service_user_get_input().
authorTimo Sirainen <tss@iki.fi>
Wed, 11 Nov 2009 01:01:19 +0000 (20:01 -0500)
committerTimo Sirainen <tss@iki.fi>
Wed, 11 Nov 2009 01:01:19 +0000 (20:01 -0500)
--HG--
branch : HEAD

src/lib-storage/mail-storage-service.c
src/lib-storage/mail-storage-service.h

index ff65fc2cb56b47e7e5195dd90e340d5c15a38664..e6d2c35addd3b210e6bf76f5b954ba91846a3329 100644 (file)
@@ -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;
index 485fbae2de90995611814ae9929bd7a72107e21c..bc0d14a622ae3a3b2d0be584afbe1bdfb529fec3 100644 (file)
@@ -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);