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
55b4d4d1
...
55b4d4d107f427f51993f6e4edd0c8ed946e742f
authored
2003-12-25 10:50:03 +0000
by
uid65697
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added typecasts
1 parent
e9493ee8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
examples/pop3client.c
examples/pop3client.c
View file @
55b4d4d
...
...
@@ -387,7 +387,7 @@ com_capa (char *arg)
iterator_next
(
iterator
))
{
char
*
capa
=
NULL
;
iterator_current
(
iterator
,
&
capa
);
iterator_current
(
iterator
,
(
void
**
)
&
capa
);
printf
(
"Capa: %s
\n
"
,
(
capa
)
?
capa
:
""
);
}
iterator_destroy
(
&
iterator
);
...
...
@@ -413,7 +413,7 @@ com_uidl (char *arg)
iterator_next
(
uidl_iterator
))
{
char
*
uidl
=
NULL
;
iterator_current
(
uidl_iterator
,
&
uidl
);
iterator_current
(
uidl_iterator
,
(
void
**
)
&
uidl
);
printf
(
"UIDL: %s
\n
"
,
(
uidl
)
?
uidl
:
""
)
;
}
iterator_destroy
(
&
uidl_iterator
);
...
...
@@ -449,7 +449,7 @@ com_list (char *arg)
iterator_next
(
list_iterator
))
{
char
*
list
=
NULL
;
iterator_current
(
list_iterator
,
&
list
);
iterator_current
(
list_iterator
,
(
void
**
)
&
list
);
printf
(
"LIST: %s
\n
"
,
(
list
)
?
list
:
""
);
}
iterator_destroy
(
&
list_iterator
);
...
...
Please
register
or
sign in
to post a comment