diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-05-13 22:14:57 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-05-13 22:14:57 +0000 |
commit | f9b53030c81bdae78e0a1da362572358b0ba0d32 (patch) | |
tree | 45fd8ba75e1fd93ec5909c890af770c7bbcb3ec8 /fetchmail.c | |
parent | e2af690f8bef6be6b349bade072f59d141ecc87b (diff) | |
download | fetchmail-f9b53030c81bdae78e0a1da362572358b0ba0d32.tar.gz fetchmail-f9b53030c81bdae78e0a1da362572358b0ba0d32.tar.bz2 fetchmail-f9b53030c81bdae78e0a1da362572358b0ba0d32.zip |
Almost ready to ship.
svn path=/trunk/; revision=2893
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.c b/fetchmail.c index d68bffca..bce52ae5 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -1123,9 +1123,9 @@ static int load_params(int argc, char **argv, int optind) ctl->server.truename = xstrdup(leadname); } #ifdef HAVE_GETHOSTBYNAME - else if (ctl->server.preauthenticate==A_KERBEROS_V4 || + else if (!configdump && (ctl->server.preauthenticate==A_KERBEROS_V4 || ctl->server.preauthenticate==A_KERBEROS_V5 || - (ctl->server.dns && MULTIDROP(ctl))) + (ctl->server.dns && MULTIDROP(ctl)))) { struct hostent *namerec; |