]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
conflict w/ builtin, log -> lctx.
authorMark Andrews <marka@isc.org>
Wed, 16 Mar 2005 13:52:51 +0000 (13:52 +0000)
committerMark Andrews <marka@isc.org>
Wed, 16 Mar 2005 13:52:51 +0000 (13:52 +0000)
bin/tests/sig0_test.c

index 918caab63d048aee34e9614e4c9cd78ce2bfba32..2573b796743d09aadfd515f8ad5f42d0bfee6276 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: sig0_test.c,v 1.11 2004/03/05 04:58:39 marka Exp $ */
+/* $Id: sig0_test.c,v 1.12 2005/03/16 13:52:51 marka Exp $ */
 
 #include <config.h>
 
@@ -68,7 +68,7 @@ isc_buffer_t qbuffer, rbuffer;
 isc_taskmgr_t *taskmgr;
 isc_entropy_t *ent = NULL;
 isc_task_t *task1;
-isc_log_t *log = NULL;
+isc_log_t *lctx = NULL;
 isc_logconfig_t *logconfig = NULL;
 isc_socket_t *s;
 isc_sockaddr_t address;
@@ -250,7 +250,7 @@ main(int argc, char *argv[]) {
        socketmgr = NULL;
        RUNTIME_CHECK(isc_socketmgr_create(mctx, &socketmgr) == ISC_R_SUCCESS);
 
-       RUNTIME_CHECK(isc_log_create(mctx, &log, &logconfig) == ISC_R_SUCCESS);
+       RUNTIME_CHECK(isc_log_create(mctx, &lctx, &logconfig) == ISC_R_SUCCESS);
 
        s = NULL;
        RUNTIME_CHECK(isc_socket_create(socketmgr, PF_INET,
@@ -291,7 +291,7 @@ main(int argc, char *argv[]) {
 
        isc_entropy_detach(&ent);
 
-       isc_log_destroy(&log);
+       isc_log_destroy(&lctx);
 
        if (verbose)
                isc_mem_stats(mctx, stdout);