diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-05 19:08:18 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-05 19:08:18 +0000 |
commit | 4640f5541a1699ea3805e8a0801811201d9c24ef (patch) | |
tree | aa5c89f92e5d1426386f71faefbf1c13eadd16d3 /fetchmail.h | |
parent | 3fdc882c9627f13b63eb087c71e96caf045da05d (diff) | |
download | fetchmail-4640f5541a1699ea3805e8a0801811201d9c24ef.tar.gz fetchmail-4640f5541a1699ea3805e8a0801811201d9c24ef.tar.bz2 fetchmail-4640f5541a1699ea3805e8a0801811201d9c24ef.zip |
Allow duplicate hostnames again.
svn path=/trunk/; revision=1152
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 30b848e3..1ff759a2 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -132,10 +132,10 @@ struct query /* internal use */ bool active; /* should we actually poll this server? */ int errcount; /* count transient errors in last pass */ - struct query *next; /* next query control block in chain */ int smtp_socket; /* socket descriptor for SMTP connection */ unsigned int uid; /* UID of user to deliver to */ char digest [DIGESTLEN]; /* md5 digest buffer */ + struct query *next; /* next query control block in chain */ }; #define MULTIDROP(ctl) (ctl->wildcard || \ @@ -254,6 +254,7 @@ int interface_approve(struct hostdata *); char *getpassword(char *); void escapes(const char *, char *); +char *visbuf(const char *); char *showproto(int); void yyerror(const char *); |