drop parser support for dns_c_forw_noanswer and dns_c_forw_nodomain

as the server does not implement them (lacking a spec for what they should do)
This commit is contained in:
Andreas Gustafsson 2000-08-23 23:56:44 +00:00
parent 5bf922fd09
commit 60cf8301f9

View file

@ -16,7 +16,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: confparser.y.dirty,v 1.12 2000/08/23 23:54:58 gson Exp $ */
/* $Id: confparser.y.dirty,v 1.13 2000/08/23 23:56:44 gson Exp $ */
#include <config.h>
@ -2120,14 +2120,6 @@ forward_opt: L_ONLY
{
$$ = dns_c_forw_first;
}
| L_IF_NO_ANSWER
{
$$ = dns_c_forw_noanswer;
}
| L_IF_NO_DOMAIN
{
$$ = dns_c_forw_nodomain;
}
;