aboutsummaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-08-12 04:14:37 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-08-12 04:14:37 +0000
commit58b307822eb474e4d1030b3986d71f2de7651d5e (patch)
tree1b5c09c8645ac719b3b51ad8bc5fc795cdae9ca4 /socket.c
parent0d1223722a788b426eb2aac5321880bdf5a9ed65 (diff)
downloadfetchmail-58b307822eb474e4d1030b3986d71f2de7651d5e.tar.gz
fetchmail-58b307822eb474e4d1030b3986d71f2de7651d5e.tar.bz2
fetchmail-58b307822eb474e4d1030b3986d71f2de7651d5e.zip
Hope this nails the bad argument type.
svn path=/trunk/; revision=2947
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/socket.c b/socket.c
index 50533c33..808846f3 100644
--- a/socket.c
+++ b/socket.c
@@ -118,7 +118,7 @@ static int handle_plugin(const char *host,
/* get a socket mediated through a given external command */
{
int fds[2];
- const char **argvec;
+ char **argvec;
if (socketpair(AF_UNIX,SOCK_STREAM,0,fds))
{
report(stderr, _("fetchmail: socketpair failed\n"));