diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-10-31 06:47:56 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-10-31 06:47:56 +0000 |
commit | f9f66749c22dcb49ed96d9aa43c4979d7b27742f (patch) | |
tree | 70aff56756cf718d1efe897d88ed33443e079b9e /fetchmail.h | |
parent | a2278043c64feb80565c1a6bf6456c687f5a5923 (diff) | |
download | fetchmail-f9f66749c22dcb49ed96d9aa43c4979d7b27742f.tar.gz fetchmail-f9f66749c22dcb49ed96d9aa43c4979d7b27742f.tar.bz2 fetchmail-f9f66749c22dcb49ed96d9aa43c4979d7b27742f.zip |
STEP 4: Make SMTP functions take file pointer arguments.
svn path=/trunk/; revision=447
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 3cd5c104..eaf11fb0 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -94,7 +94,7 @@ struct query int active; struct query *next; /* next query control block in chain */ struct query *leader; /* pointer to this query's SMTP leader */ - int smtp_socket; /* socket descriptor for SMTP connection */ + FILE *smtp_sockfp; /* socket descriptor for SMTP connection */ unsigned int uid; /* UID of user to deliver to */ char digest [DIGESTLEN]; /* md5 digest buffer */ #ifdef HAVE_GETHOSTBYNAME |