diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-07-30 14:21:41 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-07-30 14:21:41 +0000 |
commit | 8f38d33f91af1073b489763015b6938b7ceda100 (patch) | |
tree | f202e2645d9a595701d728f84258aa16511eca03 /fetchmail.h | |
parent | cc0be999f7bb693f357173028791e22c0ed3486d (diff) | |
download | fetchmail-8f38d33f91af1073b489763015b6938b7ceda100.tar.gz fetchmail-8f38d33f91af1073b489763015b6938b7ceda100.tar.bz2 fetchmail-8f38d33f91af1073b489763015b6938b7ceda100.zip |
Try to fix the HELO NULL bug.
svn path=/trunk/; revision=1202
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fetchmail.h b/fetchmail.h index aa3d6474..6062c6c6 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -100,9 +100,7 @@ struct hostdata /* shared among all user connections to given server */ /* computed for internal use */ int poll_count; /* count of polls so far */ -#ifdef HAVE_GETHOSTBYNAME - char *canonical_name; /* DNS canonical name of server host */ -#endif /* HAVE_GETHOSTBYNAME */ + char *truename; /* "true name" of server host */ struct hostdata *lead_server; /* ptr to lead query for this server */ int esmtp_options; }; |