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
7c53f927
...
7c53f927013f1fc3c1d9df98cb1948a8106b2ec9
authored
2005-06-23 13:26:12 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Minor correction
1 parent
30198fa8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
imap4d/util.c
mail.local/main.c
mail/decode.c
imap4d/util.c
View file @
7c53f92
...
...
@@ -408,7 +408,7 @@ util_finish (struct imap4d_command *command, int rc, const char *format, ...)
int
new_state
;
int
status
=
0
;
va_list
ap
;
char
*
sc
=
sc2string
(
rc
);
c
onst
c
har
*
sc
=
sc2string
(
rc
);
va_start
(
ap
,
format
);
vasprintf
(
&
tempbuf
,
format
,
ap
);
...
...
mail.local/main.c
View file @
7c53f92
...
...
@@ -864,7 +864,8 @@ notify_biff (mailbox_t mbox, char *name, size_t size)
return
;
mailbox_get_url
(
mbox
,
&
url
);
asprintf
(
&
buf
,
"%s@%ld:%s"
,
name
,
size
,
url_to_string
(
url
));
asprintf
(
&
buf
,
"%s@%lu:%s"
,
name
,
(
unsigned
long
)
size
,
url_to_string
(
url
));
if
(
buf
)
{
sendto
(
fd
,
buf
,
strlen
(
buf
),
0
,
(
struct
sockaddr
*
)
&
inaddr
,
...
...
mail/decode.c
View file @
7c53f92
...
...
@@ -143,7 +143,7 @@ display_message0 (message_t mesg, const msgset_t *msgset,
{
size_t
nparts
=
0
;
header_t
hdr
=
NULL
;
c
onst
c
har
*
type
;
char
*
type
;
char
*
encoding
;
int
ismime
=
0
;
char
*
tmp
;
...
...
Please
register
or
sign in
to post a comment