diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-08-12 04:14:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-08-12 04:14:37 +0000 |
commit | 58b307822eb474e4d1030b3986d71f2de7651d5e (patch) | |
tree | 1b5c09c8645ac719b3b51ad8bc5fc795cdae9ca4 /socket.c | |
parent | 0d1223722a788b426eb2aac5321880bdf5a9ed65 (diff) | |
download | fetchmail-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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")); |