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
145b498c
...
145b498cab575b228dc18b182a9ed9cc9e8ebcd3
authored
2004-07-01 09:09:01 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added missing include
(nntp_itr_getitem): Changed declaration
1 parent
abfad795
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
mailbox/nntp/nntp_iterator.c
mailbox/nntp/nntp_iterator.c
View file @
145b498
...
...
@@ -26,12 +26,13 @@
#include <stdio.h>
#include <errno.h>
#include <mailutils/sys/nntp.h>
#include <mailutils/iterator.h>
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
**
pret
);
static
int
nntp_itr_getitem
(
void
*
owner
,
void
*
const
*
pret
);
static
int
nntp_itr_curitem_p
(
void
*
owner
,
void
*
data
);
static
int
nntp_itr_finished_p
(
void
*
owner
);
...
...
@@ -157,7 +158,7 @@ nntp_itr_next (void *owner)
}
static
int
nntp_itr_getitem
(
void
*
owner
,
void
**
item
)
nntp_itr_getitem
(
void
*
owner
,
void
*
const
*
item
)
{
struct
nntp_iterator
*
nntp_iterator
=
(
struct
nntp_iterator
*
)
owner
;
if
(
item
)
...
...
Please
register
or
sign in
to post a comment