Commit fe4bfde5 fe4bfde50d3333e5d7778a424c5e611411fabfe0 by Sergey Poznyakoff

Bugfix

* libmailutils/stream/xscript-stream.c (print_transcript): Print
closing double-quote after user name in LOGIN statement.
1 parent 992d4fb9
......@@ -137,8 +137,10 @@ print_transcript (struct _mu_xscript_stream *str, int flag,
if (buf[i] == '"')
{
for (i++; i < len && buf[i] != '"'; i++)
if (buf[i] == '\'')
if (buf[i] == '\\')
i++;
if (i < len && buf[i] == '"')
i++;
}
else
{
......