diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 08:50:50 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-08 08:50:50 +0000 |
commit | 2edb10701e58c47a83f88ccb2362f7b9c6bcee6e (patch) | |
tree | 4da198c0449bb4848cd74411f7f1de98d60f4123 | |
parent | 78be978edfd5a5346ab773f1e3eb2240d29688b4 (diff) | |
download | fetchmail-2edb10701e58c47a83f88ccb2362f7b9c6bcee6e.tar.gz fetchmail-2edb10701e58c47a83f88ccb2362f7b9c6bcee6e.tar.bz2 fetchmail-2edb10701e58c47a83f88ccb2362f7b9c6bcee6e.zip |
More branch cleaning.
svn path=/trunk/; revision=507
-rw-r--r-- | driver.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -93,7 +93,7 @@ static void vtalarm_handler (int signal) longjmp(restart, 1); } -#ifdef HAVE_GETHOSTBYNAME +#ifdef HAVE_RES_SEARCH #define MX_RETRIES 3 static int is_host_alias(name, ctl) @@ -199,7 +199,7 @@ struct idlist **xmit_names; /* list of recipient names parsed out */ ((cp = nxtaddr((char *)NULL)) != (char *)NULL); } } -#endif /* HAVE_GETHOSTBYNAME */ +#endif /* HAVE_RES_SEARCH */ static FILE *smtp_open(ctl) /* try to open a socket to the appropriate SMTP server for this query */ @@ -341,7 +341,7 @@ struct query *ctl; /* query control record */ /* cons up a list of local recipients */ xmit_names = (struct idlist *)NULL; -#ifdef HAVE_GETHOSTBYNAME +#ifdef HAVE_RES_SEARCH /* is this a multidrop box? */ if (MULTIDROP(ctl)) { @@ -351,7 +351,7 @@ struct query *ctl; /* query control record */ find_server_names(bcchdr, ctl, &xmit_names); } else /* it's a single-drop box, use first localname */ -#endif /* HAVE_GETHOSTBYNAME */ +#endif /* HAVE_RES_SEARCH */ { if (ctl->localnames) save_uid(&xmit_names, -1, ctl->localnames->id); |