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
3d540178
...
3d5401784b95e8a3ab648d4f1acb3aa7b991df8a
authored
2005-05-20 08:36:23 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(fetch_getcommand): Changed proto to make gcc 4.0 happy.
1 parent
29e13e8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
imap4d/fetch.c
imap4d/fetch.c
View file @
3d54017
...
...
@@ -64,7 +64,7 @@ static int fetch_header_fields __P ((message_t, char **, unsigned long, unsi
static
int
fetch_header_fields_not
__P
((
message_t
,
char
**
,
unsigned
long
,
unsigned
long
));
static
int
fetch_send_address
__P
((
const
char
*
));
static
struct
fetch_command
*
fetch_getcommand
__P
((
char
*
,
struct
fetch_command
[]
));
static
struct
fetch_command
*
fetch_getcommand
__P
((
char
*
,
struct
fetch_command
*
));
struct
fetch_command
{
...
...
@@ -105,7 +105,7 @@ struct fetch_command
/* Go through the fetch array sub command and returns the the structure. */
static
struct
fetch_command
*
fetch_getcommand
(
char
*
cmd
,
struct
fetch_command
command_table
[]
)
fetch_getcommand
(
char
*
cmd
,
struct
fetch_command
*
command_table
)
{
size_t
i
,
len
=
strlen
(
cmd
);
...
...
Please
register
or
sign in
to post a comment