From: Danny Mayer Date: Sun, 11 Aug 2002 03:26:26 +0000 (+0000) Subject: changed keyword option to options for the resolv.conf file X-Git-Tag: v9.2.3rc1~104^2~389 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1433d8f5f46111158cb6d7d4fa14b747f84657c1;p=thirdparty%2Fbind9.git changed keyword option to options for the resolv.conf file --- diff --git a/lib/lwres/lwconfig.c b/lib/lwres/lwconfig.c index f62e570687d..09358f351f1 100644 --- a/lib/lwres/lwconfig.c +++ b/lib/lwres/lwconfig.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: lwconfig.c,v 1.35 2001/11/27 01:56:31 gson Exp $ */ +/* $Id: lwconfig.c,v 1.36 2002/08/11 03:26:26 mayer Exp $ */ /*** *** Module for parsing resolv.conf files. @@ -581,7 +581,7 @@ lwres_conf_parse(lwres_context_t *ctx, const char *filename) { rval = lwres_conf_parsesearch(ctx, fp); else if (strcmp(word, "sortlist") == 0) rval = lwres_conf_parsesortlist(ctx, fp); - else if (strcmp(word, "option") == 0) + else if (strcmp(word, "options") == 0) rval = lwres_conf_parseoption(ctx, fp); else { /* unrecognised word. Ignore entire line */