diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-30 21:29:48 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-30 21:29:48 +0000 |
commit | 768378869dfbe86f5bd0084db3187c67347f0537 (patch) | |
tree | 8e616dc254af41321e8053cba2eb0a90ed5afbf6 /fetchmail.h | |
parent | 57e04d21058a54b858c7d1d4b1f32164671c8dc4 (diff) | |
download | fetchmail-768378869dfbe86f5bd0084db3187c67347f0537.tar.gz fetchmail-768378869dfbe86f5bd0084db3187c67347f0537.tar.bz2 fetchmail-768378869dfbe86f5bd0084db3187c67347f0537.zip |
Break the pollname out of the names list.
svn path=/trunk/; revision=1207
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 6062c6c6..495ec823 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -78,8 +78,9 @@ typedef char flag; struct hostdata /* shared among all user connections to given server */ { /* rc file data */ + char *pollname; /* poll label of host */ char *via; /* "true" server name if non-NULL */ - struct idlist *names; /* server name first, then akas */ + struct idlist *akalist; /* server name first, then akas */ struct idlist *localdomains; /* list of pass-through domains */ int protocol; /* protocol type */ int port; /* TCP/IP service port number */ |