diff options
author | Florian Weimer <fweimer@redhat.com> | 2016-04-28 11:43:41 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2016-04-28 12:53:51 +0200 |
commit | 18b36f5dcfcb75096f804d2cf6b74bc6f27f9ad1 (patch) | |
tree | f6d2ba2e527dbb12b8add29c820a5c0f1837e158 /resolv/res_init.c | |
parent | 74a69831556c91ef9c410a38f1e2bd37c305322f (diff) | |
download | glibc-18b36f5dcfcb75096f804d2cf6b74bc6f27f9ad1.tar.gz glibc-18b36f5dcfcb75096f804d2cf6b74bc6f27f9ad1.tar.xz glibc-18b36f5dcfcb75096f804d2cf6b74bc6f27f9ad1.zip |
resolv: Remove RFC1535 conditionals
Diffstat (limited to 'resolv/res_init.c')
-rw-r--r-- | resolv/res_init.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/resolv/res_init.c b/resolv/res_init.c index da1f79e7c0..407e6091e7 100644 --- a/resolv/res_init.c +++ b/resolv/res_init.c @@ -85,7 +85,6 @@ #include <not-cancel.h> /* Options. Should all be left alone. */ -#define RFC1535 /* #undef DEBUG */ static void res_setoptions (res_state, const char *, const char *) @@ -133,9 +132,6 @@ __res_vinit(res_state statp, int preinit) { int havesearch = 0; int nsort = 0; char *net; -#ifndef RFC1535 - int dots; -#endif statp->_u._ext.initstamp = __res_initstamp; if (!preinit) { @@ -394,29 +390,6 @@ __res_vinit(res_state statp, int preinit) { *pp++ = statp->defdname; *pp = NULL; -#ifndef RFC1535 - dots = 0; - for (cp = statp->defdname; *cp; cp++) - dots += (*cp == '.'); - - cp = statp->defdname; - while (pp < statp->dnsrch + MAXDFLSRCH) { - if (dots < LOCALDOMAINPARTS) - break; - cp = __rawmemchr(cp, '.') + 1; /* we know there is one */ - *pp++ = cp; - dots--; - } - *pp = NULL; -#ifdef DEBUG - if (statp->options & RES_DEBUG) { - printf(";; res_init()... default dnsrch list:\n"); - for (pp = statp->dnsrch; *pp; pp++) - printf(";;\t%s\n", *pp); - printf(";;\t..END..\n"); - } -#endif -#endif /* !RFC1535 */ } if ((cp = getenv("RES_OPTIONS")) != NULL) |