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
de632534
...
de632534b0552700c8c9dac4fcbfa8549466f5da
authored
2001-05-20 14:57:56 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Patch from Sergey.
1 parent
c4720131
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
3 deletions
AUTHORS
ChangeLog
mailbox/mbx_mboxscan.c
pop3d/pop3d.c
AUTHORS
View file @
de63253
...
...
@@ -5,4 +5,6 @@ Dave Inglis <dinglis@qnx.com>
Jakob Kaivo <jkaivo@ndn.net>
Jeff Bailey <jbailey@gnu.org>
Sean 'Shaleh' Perry <shaleh@debian.org>
Sergey Poznyakoff <gray@Mirddin.farlep.net>
Sam Roberts <sroberts@uniserve.com>
...
...
ChangeLog
View file @
de63253
2001-05-19 Alain Magloire
* AUTHORS: Update to reflect Sergey and Sam contributions.
2001-05-20 Sergey Poznyakoff
* mailbox/mbx_mboxscan.c:* Bug in mailbox/mbx_mboxscan.c made the
stuff coredump upon encountering more than one subject in the header.
* pop3d/pop3d.c: Typo.
2001-05-19 Sam Roberts
* mailbox/parse822.c: parse822 is a little smarter in the way
...
...
mailbox/mbx_mboxscan.c
View file @
de63253
...
...
@@ -711,8 +711,6 @@ mbox_scan0 (mailbox_t mailbox, size_t msgno, size_t *pcount, int do_notif)
}
else
if
(
ISSUBJECT
(
buf
))
{
char
*
ss
=
NULL
;
if
(
mum
->
fhdr
[
H_SUBJECT
])
*
ss
=
1
;
FAST_H_SUBJECT
(
mum
,
sfield
,
buf
,
n
);
}
else
if
(
ISTO
(
buf
))
...
...
pop3d/pop3d.c
View file @
de63253
...
...
@@ -233,7 +233,7 @@ pop3d_mainloop (int infile, int outfile)
ifile
=
fdopen
(
infile
,
"r"
);
ofile
=
fdopen
(
outfile
,
"w"
);
if
(
!
o
file
||
!
ofile
)
if
(
!
i
file
||
!
ofile
)
pop3d_abquit
(
ERR_NO_OFILE
);
state
=
AUTHORIZATION
;
...
...
Please
register
or
sign in
to post a comment