summaryrefslogtreecommitdiff
path: root/imap4d
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-05-20 08:36:23 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-05-20 08:36:23 +0000
commit3d5401784b95e8a3ab648d4f1acb3aa7b991df8a (patch)
treed19a6554d848da57f80670158a5b0e15dba1ffef /imap4d
parent29e13e8f4a5bb7d4a48922e16fa8862a5a3c5752 (diff)
downloadmailutils-3d5401784b95e8a3ab648d4f1acb3aa7b991df8a.tar.gz
mailutils-3d5401784b95e8a3ab648d4f1acb3aa7b991df8a.tar.bz2
(fetch_getcommand): Changed proto to make gcc 4.0 happy.
Diffstat (limited to 'imap4d')
-rw-r--r--imap4d/fetch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap4d/fetch.c b/imap4d/fetch.c
index 3681450dd..629c4ddd6 100644
--- a/imap4d/fetch.c
+++ b/imap4d/fetch.c
@@ -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);

Return to:

Send suggestions and report system problems to the System administrator.