Mercurial > dovecot > original-hg > dovecot-1.2
view src/imap/cmd-cancelupdate.c @ 9191:b340ecb24469 HEAD
Fix VPATH build of RQUOTA support.
Some rpcgen derive #include "..." paths from the infile argument.
This will be off for VPATH builds, as the generated rquota_xdr.c
code will look in $(srcdir), but we'll generate the rquota.h file in
$(builddir). Play safe and copy rquota.x to $(builddir) first.
This fixes the build on openSUSE 11.1.
author | Matthias Andree <matthias.andree@gmx.de> |
---|---|
date | Tue, 07 Jul 2009 21:01:36 +0200 |
parents | b9faf4db2a9f |
children | 00cd9aacd03c |
line wrap: on
line source
/* Copyright (c) 2008-2009 Dovecot authors, see the included COPYING file */ #include "common.h" #include "commands.h" static bool client_search_update_cancel(struct client *client, const char *tag) { struct imap_search_update *update; unsigned int idx; update = client_search_update_lookup(client, tag, &idx); if (update == NULL) return FALSE; i_free(update->tag); mailbox_search_result_free(&update->result); array_delete(&client->search_updates, idx, 1); return TRUE; } bool cmd_cancelupdate(struct client_command_context *cmd) { const struct imap_arg *args; const char *str; unsigned int i; if (!client_read_args(cmd, 0, 0, &args)) return FALSE; for (i = 0; args[i].type == IMAP_ARG_STRING; i++) ; if (args[i].type != IMAP_ARG_EOL || i == 0) { client_send_tagline(cmd, "BAD Invalid parameters."); return TRUE; } for (i = 0; args[i].type == IMAP_ARG_STRING; i++) { str = IMAP_ARG_STR_NONULL(&args[i]); if (!client_search_update_cancel(cmd->client, str)) { client_send_tagline(cmd, "BAD Unknown tag."); return TRUE; } } client_send_tagline(cmd, "OK Updates cancelled."); return TRUE; }