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
f58e4a22
...
f58e4a226d86444df0c5ffdca73e4a862b87f81c
authored
2004-07-05 07:07:09 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Updated declaration of getitem method.
1 parent
c19148df
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
mailbox/list.c
mailbox/nntp/nntp_iterator.c
mailbox/pop/pop3_iterator.c
mailbox/list.c
View file @
f58e4a2
...
...
@@ -389,7 +389,7 @@ next (void *owner)
}
static
int
getitem
(
void
*
owner
,
void
*
const
*
pret
)
getitem
(
void
*
owner
,
void
**
pret
)
{
struct
list_iterator
*
itr
=
owner
;
*
pret
=
itr
->
cur
->
item
;
...
...
mailbox/nntp/nntp_iterator.c
View file @
f58e4a2
...
...
@@ -32,7 +32,7 @@ static int nntp_itr_dup (void **ptr, void *owner);
static
int
nntp_itr_destroy
(
iterator_t
itr
,
void
*
owner
);
static
int
nntp_itr_first
(
void
*
owner
);
static
int
nntp_itr_next
(
void
*
woner
);
static
int
nntp_itr_getitem
(
void
*
owner
,
void
*
const
*
pret
);
static
int
nntp_itr_getitem
(
void
*
owner
,
void
**
pret
);
static
int
nntp_itr_curitem_p
(
void
*
owner
,
void
*
data
);
static
int
nntp_itr_finished_p
(
void
*
owner
);
...
...
@@ -158,7 +158,7 @@ nntp_itr_next (void *owner)
}
static
int
nntp_itr_getitem
(
void
*
owner
,
void
*
const
*
item
)
nntp_itr_getitem
(
void
*
owner
,
void
**
item
)
{
struct
nntp_iterator
*
nntp_iterator
=
(
struct
nntp_iterator
*
)
owner
;
if
(
item
)
...
...
mailbox/pop/pop3_iterator.c
View file @
f58e4a2
...
...
@@ -31,7 +31,7 @@ static int pop3_itr_dup (void **ptr, void *owner);
static
int
pop3_itr_destroy
(
iterator_t
itr
,
void
*
owner
);
static
int
pop3_itr_first
(
void
*
owner
);
static
int
pop3_itr_next
(
void
*
woner
);
static
int
pop3_itr_getitem
(
void
*
owner
,
void
*
const
*
pret
);
static
int
pop3_itr_getitem
(
void
*
owner
,
void
**
pret
);
static
int
pop3_itr_curitem_p
(
void
*
owner
,
void
*
data
);
static
int
pop3_itr_finished_p
(
void
*
owner
);
...
...
@@ -157,7 +157,7 @@ pop3_itr_next (void *owner)
}
static
int
pop3_itr_getitem
(
void
*
owner
,
void
*
const
*
item
)
pop3_itr_getitem
(
void
*
owner
,
void
**
item
)
{
struct
pop3_iterator
*
pop3_iterator
=
(
struct
pop3_iterator
*
)
owner
;
if
(
item
)
...
...
Please
register
or
sign in
to post a comment