Index: man/cupsd.conf.man.in =================================================================== --- man/cupsd.conf.man.in (revision 7643) +++ man/cupsd.conf.man.in (working copy) @@ -12,7 +12,7 @@ .\" which should have been included with this file. If this file is .\" file is missing or damaged, see the license at "http://www.cups.org/". .\" -.TH cupsd.conf 5 "Common UNIX Printing System" "15 May 2008" "Apple Inc." +.TH cupsd.conf 5 "Common UNIX Printing System" "16 June 2008" "Apple Inc." .SH NAME cupsd.conf \- server configuration file for cups .SH DESCRIPTION @@ -306,9 +306,9 @@ .br Specifies whether to hide members of implicit classes. .TP 5 -HostNameLookups Yes +HostNameLookups On .TP 5 -HostNameLookups No +HostNameLookups Off .TP 5 HostNameLookups Double .br Index: scheduler/conf.c =================================================================== --- scheduler/conf.c (revision 7643) +++ scheduler/conf.c (working copy) @@ -2868,9 +2868,11 @@ * Do hostname lookups? */ - if (!strcasecmp(value, "off")) + if (!strcasecmp(value, "off") || !strcasecmp(value, "no") || + !strcasecmp(value, "false")) HostNameLookups = 0; - else if (!strcasecmp(value, "on")) + else if (!strcasecmp(value, "on") || !strcasecmp(value, "yes") || + !strcasecmp(value, "true")) HostNameLookups = 1; else if (!strcasecmp(value, "double")) HostNameLookups = 2;