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
caf9721f
...
caf9721f75d2fb353fd2f177f54b0a90c5a4b823
authored
2002-08-13 13:33:13 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(message_has_bcc): Fixed inconsistency in passing arguments to header_get_value().
1 parent
dee7bf89
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mailbox/smtp.c
mailbox/smtp.c
View file @
caf9721
...
...
@@ -493,7 +493,7 @@ message_has_bcc(message_t msg)
if
((
status
=
message_get_header
(
msg
,
&
header
)))
return
status
;
status
=
header_get_value
(
header
,
MU_HEADER_BCC
,
NULL
,
NULL
,
&
bccsz
);
status
=
header_get_value
(
header
,
MU_HEADER_BCC
,
NULL
,
0
,
&
bccsz
);
/* ENOENT, or there was a Bcc: field. */
return
status
==
ENOENT
?
0
:
1
;
...
...
Please
register
or
sign in
to post a comment