aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-31 06:10:50 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-31 06:10:50 +0000
commit0abdc15849655ba7059604c834759bdc5db43773 (patch)
tree852ee80e5e61ac6503c1ddc7db4ceee1e2ef2d95 /fetchmail.h
parent8e1bf17daf8b3316dbfaeceea20fe9172cb7b859 (diff)
downloadfetchmail-0abdc15849655ba7059604c834759bdc5db43773.tar.gz
fetchmail-0abdc15849655ba7059604c834759bdc5db43773.tar.bz2
fetchmail-0abdc15849655ba7059604c834759bdc5db43773.zip
STEP 1: Make all methods take file pointer arguments.
svn path=/trunk/; revision=444
Diffstat (limited to 'fetchmail.h')
-rw-r--r--fetchmail.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h
index 356e48f6..3cd5c104 100644
--- a/fetchmail.h
+++ b/fetchmail.h
@@ -150,8 +150,8 @@ extern char *user; /* name of invoking user */
/* prototypes for globally callable functions */
#if defined(HAVE_STDARG_H)
-void gen_send (int socket, char *, ... );
-int gen_transact (int socket, char *, ... );
+void gen_send (FILE *sockfp, char *, ... );
+int gen_transact (FILE *sockfp, char *, ... );
#else
void gen_send ();
int gen_transact ();