Minor fix.
* libproto/mailer/smtp.c (smtp_send_message): Fix typo.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -467,7 +467,7 @@ smtp_send_message (mu_mailer_t mailer, mu_message_t msg, | ... | @@ -467,7 +467,7 @@ smtp_send_message (mu_mailer_t mailer, mu_message_t msg, |
467 | mu_message_lines (msg, &lines) == 0) | 467 | mu_message_lines (msg, &lines) == 0) |
468 | { | 468 | { |
469 | size_t msgsize = size + lines; | 469 | size_t msgsize = size + lines; |
470 | if (strncmp (size_str, "SIZE=", 5) == 0) | 470 | if (strncmp (size_str, "SIZE ", 5) == 0) |
471 | { | 471 | { |
472 | size_t maxsize = strtoul (size_str + 5, NULL, 10); | 472 | size_t maxsize = strtoul (size_str + 5, NULL, 10); |
473 | 473 | ... | ... |
-
Please register or sign in to post a comment