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
29e43b89
...
29e43b891d3e804d5b7e9ae3daa2b2dd7d2c5be6
authored
2001-06-02 01:42:55 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Buglet fix.
1 parent
c1813e67
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
ChangeLog
mailbox/mbx_pop.c
ChangeLog
View file @
29e43b8
2001-06-01 Alain Magloire
* mailbox/mbx_pop.c (pop_writeline): if buffer is NULL noop.
2001-06-01 Sergey Poznyakoff
* imap4d/search.c: case-insensitive comparison for text fields.
Error checking for stray symbols at the end of criteria.
...
...
mailbox/mbx_pop.c
View file @
29e43b8
...
...
@@ -1783,6 +1783,8 @@ pop_writeline (pop_data_t mpd, const char *format, ...)
va_list
ap
;
int
done
=
1
;
if
(
mpd
->
buffer
==
NULL
)
return
EINVAL
;
va_start
(
ap
,
format
);
do
{
...
...
Please
register
or
sign in
to post a comment