changeset 782:6699647fd049 HEAD

CHECK command was actually calling COPY, so it gave just error about missing parameters.
author Timo Sirainen <tss@iki.fi>
date Sat, 14 Dec 2002 19:47:25 +0200
parents 9cb7022749e7
children d826ab8c8d62
files src/imap/commands.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/imap/commands.c	Thu Dec 12 20:57:47 2002 +0200
+++ b/src/imap/commands.c	Sat Dec 14 19:47:25 2002 +0200
@@ -23,7 +23,7 @@
 		if (strcmp(name, "CLOSE") == 0)
 			return cmd_close;
 		if (strcmp(name, "CHECK") == 0)
-			return cmd_copy;
+			return cmd_check;
 		if (strcmp(name, "CAPABILITY") == 0)
 			return cmd_capability;
 		break;