dovecot: Changed disconnection reason to "Connection closed"

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


details:   http://hg.dovecot.org/dovecot/rev/15e10065a472
changeset: 6310:15e10065a472
user:      Timo Sirainen <tss at iki.fi>
date:      Fri Aug 24 19:36:03 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 f8c9b1a93521 -r 15e10065a472 src/imap/client.c
--- a/src/imap/client.c	Fri Aug 24 19:26:22 2007 +0300
+++ b/src/imap/client.c	Fri Aug 24 19:36:03 2007 +0300
@@ -96,8 +96,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