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
093f307c
...
093f307cd4b64aad88f2bf5410265a6c9953a98e
authored
2003-02-03 11:31:06 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added missing includes
1 parent
c08fb05d
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
guimb/guimb.h
mailbox/mutil.c
mailbox/rfc2047.c
guimb/guimb.h
View file @
093f307
...
...
@@ -38,6 +38,11 @@
#include <mailutils/stream.h>
#include <mailutils/guile.h>
#include <mailutils/nls.h>
#include <mailutils/argp.h>
#include <mailutils/list.h>
#include <mailutils/mutil.h>
#include <mailutils/attribute.h>
#include <mailutils/envelope.h>
#include <mu_asprintf.h>
extern
char
*
program_file
;
...
...
mailbox/mutil.c
View file @
093f307
...
...
@@ -29,7 +29,7 @@
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <ctype.h>
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/types.h>
...
...
@@ -47,6 +47,7 @@
#include <mailutils/mu_auth.h>
#include <mailutils/header.h>
#include <mailutils/message.h>
#include <mailutils/envelope.h>
/* convert a sequence of hex characters into an integer */
...
...
mailbox/rfc2047.c
View file @
093f307
...
...
@@ -22,6 +22,7 @@
#include <string.h>
#include <stdlib.h>
#include <errno.h>
#include <ctype.h>
#include <mailutils/stream.h>
#include <mailutils/filter.h>
#include <mailutils/errno.h>
...
...
@@ -65,11 +66,9 @@ rfc2047_decode (const char *tocode, const char *input, char **ptostr)
char
*
encoded_text
=
NULL
;
stream_t
filter
=
NULL
;
stream_t
in_stream
=
NULL
;
char
*
pbuffer
=
NULL
;
const
char
*
filter_type
=
NULL
;
size_t
nbytes
=
0
,
size
;
char
*
sp
=
NULL
;
char
*
end_position
=
NULL
;
start_position
=
strstr
(
fromstr
,
"=?"
);
if
(
!
start_position
)
...
...
Please
register
or
sign in
to post a comment