2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

removed dead code

This commit is contained in:
Brian Wellington
2000-07-07 18:28:58 +00:00
parent 1e8c2e72e7
commit 03968c0f5e

View File

@@ -15,7 +15,7 @@
* SOFTWARE.
*/
/* $Id: lwconfig.c,v 1.20 2000/07/07 18:24:10 bwelling Exp $ */
/* $Id: lwconfig.c,v 1.21 2000/07/07 18:28:58 bwelling Exp $ */
/***
*** Module for parsing resolv.conf files.
@@ -551,7 +551,7 @@ lwres_conf_parse(lwres_context_t *ctx, const char *filename) {
rval = lwres_conf_parsesortlist(ctx, fp);
else if (strcmp(word, "option") == 0)
rval = lwres_conf_parseoption(ctx, fp);
else if (strlen(word) > 0) {
else {
/* unrecognised word. Ignore entire line */
rval = LWRES_R_SUCCESS;
stopchar = eatline(fp);