]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lmtp, submission: Remove extra spaces from "state = X" in disconnect log line
authorTimo Sirainen <timo.sirainen@dovecot.fi>
Wed, 20 Jun 2018 07:49:46 +0000 (10:49 +0300)
committerAki Tuomi <aki.tuomi@dovecot.fi>
Tue, 7 Aug 2018 11:10:09 +0000 (14:10 +0300)
Other Dovecot log messages don't have spaces in key=value.

src/lmtp/client.c
src/submission/submission-client.c

index 3f4bb12bd6054acf53253f2536e2d5feb9bf858c..c3e1f1be52f1517cf0663473f2faa1bc486420f0 100644 (file)
@@ -233,7 +233,7 @@ void client_disconnect(struct client *client, const char *enh_code,
 
        if (reason == NULL)
                reason = "Connection closed";
-       i_info("Disconnect from %s: %s (state = %s)", client_remote_id(client),
+       i_info("Disconnect from %s: %s (state=%s)", client_remote_id(client),
               reason, client_state_get_name(client));
 
        if (conn != NULL) {
index d79237d3e4f30845f64f2fcddf773fb0449fb80f..8164ab94dd927fa35fce860189db996e155db2ea 100644 (file)
@@ -401,7 +401,7 @@ void client_disconnect(struct client *client, const char *enh_code,
 
        if (reason == NULL)
                reason = "Connection closed";
-       i_info("Disconnect from %s: %s %s (state = %s)",
+       i_info("Disconnect from %s: %s %s (state=%s)",
               client_remote_id(client),
               reason, client_stats(client),
               client_state_get_name(client));