use "_" instead of " " as new line substitute, do not delete trailing new line
Igor Sysoev
14 years ago
1 changed file(s) with
1 addition(s)
and
9 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-9
src/mail/ngx_mail_smtp_handler.c
less
more
538
538
continue;
539
539
}
540
540
541
cmd.data[i] = ' ';
542
}
543
544
while (i) {
545
if (cmd.data[i - 1] != ' ') {
546
break;
547
}
548
549
i--;
541
cmd.data[i] = '_';
550
542
}
551
543
552
544
cmd.len = i;