Bugfix
* libmailutils/stream/xscript-stream.c (print_transcript): Print closing double-quote after user name in LOGIN statement.
Showing
1 changed file
with
3 additions
and
1 deletions
... | @@ -137,8 +137,10 @@ print_transcript (struct _mu_xscript_stream *str, int flag, | ... | @@ -137,8 +137,10 @@ print_transcript (struct _mu_xscript_stream *str, int flag, |
137 | if (buf[i] == '"') | 137 | if (buf[i] == '"') |
138 | { | 138 | { |
139 | for (i++; i < len && buf[i] != '"'; i++) | 139 | for (i++; i < len && buf[i] != '"'; i++) |
140 | if (buf[i] == '\'') | 140 | if (buf[i] == '\\') |
141 | i++; | 141 | i++; |
142 | if (i < len && buf[i] == '"') | ||
143 | i++; | ||
142 | } | 144 | } |
143 | else | 145 | else |
144 | { | 146 | { | ... | ... |
-
Please register or sign in to post a comment