dovecot-2.1: pop3c: Removed extra "R " prefix from POP3 server e...

dovecot at dovecot.org dovecot at dovecot.org
Tue Apr 10 09:53:20 EEST 2012


details:   http://hg.dovecot.org/dovecot-2.1/rev/35e232e961d3
changeset: 14405:35e232e961d3
user:      Timo Sirainen <tss at iki.fi>
date:      Tue Apr 10 09:52:00 2012 +0300
description:
pop3c: Removed extra "R " prefix from POP3 server error messages.

diffstat:

 src/lib-storage/index/pop3c/pop3c-client.c |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 97cba128896f -r 35e232e961d3 src/lib-storage/index/pop3c/pop3c-client.c
--- a/src/lib-storage/index/pop3c/pop3c-client.c	Mon Apr 09 13:13:32 2012 +0300
+++ b/src/lib-storage/index/pop3c/pop3c-client.c	Tue Apr 10 09:52:00 2012 +0300
@@ -663,7 +663,7 @@
 		*reply_r = line + 3;
 		ret = 0;
 	} else if (strncasecmp(line, "-ERR", 4) == 0) {
-		*reply_r = line + 3;
+		*reply_r = line + 4;
 		ret = -1;
 	} else {
 		*reply_r = line;


More information about the dovecot-cvs mailing list