Skip to content

Commit

Permalink
auth: Fix compile problem with vpopmail
Browse files Browse the repository at this point in the history
79fe1b2 forgot to remove const from table.
  • Loading branch information
cmouse authored and sirainen committed Apr 11, 2017
1 parent f82cd18 commit b30e3da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth/userdb-vpopmail.c
Expand Up @@ -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' ||
Expand Down

0 comments on commit b30e3da

Please sign in to comment.