Skip to content

Commit

Permalink
doveadm: Do not use INT64 with mail cmds yet
Browse files Browse the repository at this point in the history
  • Loading branch information
cmouse authored and GitLab committed Jun 1, 2016
1 parent b90dc2a commit fed9f79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/doveadm/doveadm-mail-index.c
Expand Up @@ -281,7 +281,7 @@ struct doveadm_cmd_ver2 doveadm_cmd_index_ver2 = {
DOVEADM_CMD_PARAMS_START
DOVEADM_CMD_MAIL_COMMON
DOVEADM_CMD_PARAM('q',"queue",CMD_PARAM_BOOL,0)
DOVEADM_CMD_PARAM('n',"max-recent",CMD_PARAM_INT64,0)
DOVEADM_CMD_PARAM('n',"max-recent",CMD_PARAM_STR,0)
DOVEADM_CMD_PARAM('\0',"mailbox-mask",CMD_PARAM_STR,CMD_PARAM_FLAG_POSITIONAL)
DOVEADM_CMD_PARAMS_END
};
10 changes: 5 additions & 5 deletions src/doveadm/doveadm-mail-mailbox.c
Expand Up @@ -744,11 +744,11 @@ struct doveadm_cmd_ver2 doveadm_cmd_mailbox_update_ver2 = {
DOVEADM_CMD_PARAMS_START
DOVEADM_CMD_MAIL_COMMON
DOVEADM_CMD_PARAM('g', "mailbox-guid", CMD_PARAM_STR, 0)
DOVEADM_CMD_PARAM('V', "uid-validity", CMD_PARAM_INT64, 0)
DOVEADM_CMD_PARAM('N', "min-next-uid", CMD_PARAM_INT64, 0)
DOVEADM_CMD_PARAM('R', "min-first-recent-uid", CMD_PARAM_INT64, 0)
DOVEADM_CMD_PARAM('H', "min-highest-modseq", CMD_PARAM_INT64, 0)
DOVEADM_CMD_PARAM('P', "min-highest-pvt-modseq", CMD_PARAM_INT64, 0)
DOVEADM_CMD_PARAM('V', "uid-validity", CMD_PARAM_STR, 0)
DOVEADM_CMD_PARAM('N', "min-next-uid", CMD_PARAM_STR, 0)
DOVEADM_CMD_PARAM('R', "min-first-recent-uid", CMD_PARAM_STR, 0)
DOVEADM_CMD_PARAM('H', "min-highest-modseq", CMD_PARAM_STR, 0)
DOVEADM_CMD_PARAM('P', "min-highest-pvt-modseq", CMD_PARAM_STR, 0)
DOVEADM_CMD_PARAM('\0', "mailbox", CMD_PARAM_STR, CMD_PARAM_FLAG_POSITIONAL)
DOVEADM_CMD_PARAMS_END
};

0 comments on commit fed9f79

Please sign in to comment.