dovecot-1.0: Changed disconnection reason to "Connection closed"

dovecot at dovecot.org dovecot at dovecot.org
Fri Aug 24 19:36:11 EEST 2007


details:   http://hg.dovecot.org/dovecot-1.0/rev/dfbe444f6fab
changeset: 5386:dfbe444f6fab
user:      Timo Sirainen <tss at iki.fi>
date:      Fri Aug 24 19:36:02 2007 +0300
description:
Changed disconnection reason to "Connection closed"

diffstat:

1 file changed, 2 insertions(+), 2 deletions(-)
src/imap/client.c |    4 ++--

diffs (14 lines):

diff -r a732e4d09ea3 -r dfbe444f6fab src/imap/client.c
--- a/src/imap/client.c	Fri Aug 24 19:26:23 2007 +0300
+++ b/src/imap/client.c	Fri Aug 24 19:36:02 2007 +0300
@@ -65,8 +65,8 @@ static const char *client_get_disconnect
 	errno = client->input->stream_errno != 0 ?
 		client->input->stream_errno :
 		client->output->stream_errno;
-	return errno == 0 ? "Disconnected" :
-		t_strdup_printf("Disconnected: %m");
+	return errno == 0 ? "Connection closed" :
+		t_strdup_printf("Connection closed: %m");
 }
 
 void client_destroy(struct client *client, const char *reason)


More information about the dovecot-cvs mailing list