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
1778f46d
...
1778f46d00f393e6b19def1eb2557baf317f03f2
authored
2002-08-02 07:50:53 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
include argcv.h; (fetch_send_address): Added const specifier to the declaraton.
1 parent
ba978477
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
imap4d/fetch.c
imap4d/fetch.c
View file @
1778f46
...
...
@@ -17,6 +17,7 @@
#include "imap4d.h"
#include <ctype.h>
#include <argcv.h>
/* This will suck, too.
Alain: Yes it does. */
...
...
@@ -60,7 +61,7 @@ static int fetch_body_content __P ((message_t, unsigned long, unsigned long
static
int
fetch_io
__P
((
stream_t
,
unsigned
long
,
unsigned
long
,
unsigned
long
));
static
int
fetch_header_fields
__P
((
message_t
,
char
**
,
unsigned
long
,
unsigned
long
));
static
int
fetch_header_fields_not
__P
((
message_t
,
char
**
,
unsigned
long
,
unsigned
long
));
static
int
fetch_send_address
__P
((
char
*
));
static
int
fetch_send_address
__P
((
c
onst
c
har
*
));
static
struct
fetch_command
*
fetch_getcommand
__P
((
char
*
,
struct
fetch_command
[]));
...
...
@@ -1437,7 +1438,7 @@ fetch_header_fields_not (message_t msg, char **arg, unsigned long start,
/* FIXME: The address is limit by a buffer of 128, no good. We should
allocate the buffer. */
static
int
fetch_send_address
(
char
*
addr
)
fetch_send_address
(
c
onst
c
har
*
addr
)
{
address_t
address
;
size_t
i
,
count
=
0
;
...
...
Please
register
or
sign in
to post a comment