~ubuntu-branches/ubuntu/vivid/dovecot/vivid

« back to all changes in this revision

Viewing changes to src/imap/cmd-examine.c

  • Committer: Bazaar Package Importer
  • Author(s): Jaldhar H. Vyas
  • Date: 2005-11-05 23:19:19 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051105231919-ydujs4y7687fpor2
Tags: upstream-1.0.alpha4
ImportĀ upstreamĀ versionĀ 1.0.alpha4

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#include "common.h"
4
4
#include "commands.h"
5
5
 
6
 
int cmd_examine(struct client *client)
 
6
int cmd_examine(struct client_command_context *cmd)
7
7
{
8
 
        return _cmd_select_full(client, TRUE);
 
8
        return _cmd_select_full(cmd, TRUE);
9
9
}