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

Megacommit of dozens of files.

Cleanup of redundant/useless header file inclusion.

ISC style lint, primarily for function declarations and standalone
comments -- ie, those that appear on a line without any code, which
should be written as follows:
   /*
    * This is a comment.
    */
This commit is contained in:
David Lawrence
2000-05-08 14:38:29 +00:00
parent 595babf627
commit 1a69a1a78c
318 changed files with 3525 additions and 5094 deletions

View File

@@ -15,7 +15,7 @@
* SOFTWARE.
*/
/* $Id: log.c,v 1.29 2000/05/03 21:09:33 explorer Exp $ */
/* $Id: log.c,v 1.30 2000/05/08 14:37:26 tale Exp $ */
/* Principal Authors: DCL */
@@ -23,20 +23,15 @@
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <limits.h>
#include <sys/stat.h>
#include <isc/assertions.h>
#include <isc/boolean.h>
#include <isc/dir.h>
#include <isc/error.h>
#include <isc/list.h>
#include <isc/log.h>
#include <isc/mem.h>
#include <isc/mutex.h>
#include <isc/print.h>
#include <isc/string.h>
#include <isc/time.h>
#include <isc/util.h>
@@ -811,8 +806,7 @@ isc_log_vwrite1(isc_log_t *lctx, isc_logcategory_t *category,
}
void
isc_log_setcontext(isc_log_t *lctx)
{
isc_log_setcontext(isc_log_t *lctx) {
REQUIRE(isc_lctx == NULL);
isc_lctx = lctx;