aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.h
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-07-05 19:08:18 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-07-05 19:08:18 +0000
commit4640f5541a1699ea3805e8a0801811201d9c24ef (patch)
treeaa5c89f92e5d1426386f71faefbf1c13eadd16d3 /fetchmail.h
parent3fdc882c9627f13b63eb087c71e96caf045da05d (diff)
downloadfetchmail-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.h3
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 *);