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
abfad795
...
abfad795a5ca3c3714eacfaa19166b555ac93898
authored
2004-07-01 09:08:40 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed printf formats
1 parent
83107b85
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
mailbox/nntp/nntp_article.c
mailbox/nntp/nntp_body.c
mailbox/nntp/nntp_head.c
mailbox/nntp/nntp_article.c
View file @
abfad79
...
...
@@ -36,7 +36,7 @@ mu_nntp_article (mu_nntp_t nntp, unsigned long number, unsigned long *pnum, char
{
return
ENOMEM
;
}
snprintf
(
message_id
,
127
,
"%
d
"
,
number
);
snprintf
(
message_id
,
127
,
"%
lu
"
,
number
);
}
status
=
mu_nntp_article_id
(
nntp
,
message_id
,
pnum
,
mid
,
pstream
);
if
(
message_id
)
...
...
mailbox/nntp/nntp_body.c
View file @
abfad79
...
...
@@ -36,7 +36,7 @@ mu_nntp_body (mu_nntp_t nntp, unsigned long number, unsigned long *pnum, char **
{
return
ENOMEM
;
}
snprintf
(
message_id
,
127
,
"%
d
"
,
number
);
snprintf
(
message_id
,
127
,
"%
lu
"
,
number
);
}
status
=
mu_nntp_body_id
(
nntp
,
message_id
,
pnum
,
mid
,
pstream
);
if
(
message_id
)
...
...
mailbox/nntp/nntp_head.c
View file @
abfad79
...
...
@@ -36,7 +36,7 @@ mu_nntp_head (mu_nntp_t nntp, unsigned long number, unsigned long *pnum, char **
{
return
ENOMEM
;
}
snprintf
(
message_id
,
127
,
"%
d
"
,
number
);
snprintf
(
message_id
,
127
,
"%
lu
"
,
number
);
}
status
=
mu_nntp_head_id
(
nntp
,
message_id
,
pnum
,
mid
,
pstream
);
if
(
message_id
)
...
...
Please
register
or
sign in
to post a comment