提交 a1dd7e16 编写于 作者: S Sylvain Rabot 提交者: Junio C Hamano

git-send-email: fix missing space in error message

When the command cannot make a connection to the SMTP server the error
message to diagnose the broken configuration is issued.  However, when an
optional smtp-server-port is given and needs to be reported, the message
lacked a space between "hello=<smtp-domain>" and "port=<smtp-server-port>".
Signed-off-by: NSylvain Rabot <sylvain@abstraction.fr>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 ec014eac
......@@ -1091,7 +1091,7 @@ sub send_message {
"VALUES: server=$smtp_server ",
"encryption=$smtp_encryption ",
"hello=$smtp_domain",
defined $smtp_server_port ? "port=$smtp_server_port" : "";
defined $smtp_server_port ? " port=$smtp_server_port" : "";
}
if (defined $smtp_authuser) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册