Commit a940c38c a940c38c3cc0fdbb052101dd65edd22daf811c49 by Sergey Poznyakoff

Minor fix.

* libproto/mailer/smtp.c (smtp_send_message): Fix typo.
1 parent a9460b77
...@@ -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
......