Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
a940c38c
...
a940c38c3cc0fdbb052101dd65edd22daf811c49
authored
2012-01-22 00:50:57 +0200
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor fix.
* libproto/mailer/smtp.c (smtp_send_message): Fix typo.
1 parent
a9460b77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
libproto/mailer/smtp.c
libproto/mailer/smtp.c
View file @
a940c38
...
...
@@ -467,7 +467,7 @@ smtp_send_message (mu_mailer_t mailer, mu_message_t msg,
mu_message_lines
(
msg
,
&
lines
)
==
0
)
{
size_t
msgsize
=
size
+
lines
;
if
(
strncmp
(
size_str
,
"SIZE
=
"
,
5
)
==
0
)
if
(
strncmp
(
size_str
,
"SIZE
"
,
5
)
==
0
)
{
size_t
maxsize
=
strtoul
(
size_str
+
5
,
NULL
,
10
);
...
...
Please
register
or
sign in
to post a comment