diff --git a/bin/named/logconf.c b/bin/named/logconf.c index d826b12af3..c27b47d7ed 100644 --- a/bin/named/logconf.c +++ b/bin/named/logconf.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: logconf.c,v 1.20 2000/06/22 21:49:23 tale Exp $ */ +/* $Id: logconf.c,v 1.21 2000/06/22 22:30:12 tale Exp $ */ #include @@ -117,6 +117,15 @@ channel_fromconf(dns_c_logchan_t *cchan, isc_logconfig_t *lctx) { } break; + case dns_c_logchan_stderr: + type = ISC_LOG_TOFILEDESC; + { + dest.file.stream = stderr; + dest.file.name = NULL; + dest.file.versions = ISC_LOG_ROLLNEVER; + dest.file.maximum_size = 0; + } + case dns_c_logchan_null: break; }