]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
auth: Fix compile problem with vpopmail
authorAki Tuomi <aki.tuomi@dovecot.fi>
Tue, 11 Apr 2017 17:32:19 +0000 (20:32 +0300)
committerTimo Sirainen <timo.sirainen@dovecot.fi>
Tue, 11 Apr 2017 18:09:27 +0000 (21:09 +0300)
79fe1b28df44ba22b230326bee895583c1df5a28 forgot to remove const from table.

src/auth/userdb-vpopmail.c

index 5042dcf87d5d268e5c42494419523c6c0b6b5d38..d344fcd4548bf728b9c9a9a7eace17bf59d88b4a 100644 (file)
@@ -54,7 +54,7 @@ struct vqpasswd *vpopmail_lookup_vqp(struct auth_request *request,
 static const char *
 userdb_vpopmail_get_quota(const char *template, const char *vpop_str)
 {
-       const struct var_expand_table *tab;
+       struct var_expand_table *tab;
        string_t *quota;
 
        if (template == NULL || *vpop_str == '\0' ||