BIND 10 trac2946, updated. 7831eb91e8d50e8cdf9f17487c86584efbfe4855 [2946] simplified the previous fix further: just use it without any prefix.

BIND 10 source code commits bind10-changes at lists.isc.org
Fri May 17 20:27:27 UTC 2013


The branch, trac2946 has been updated
       via  7831eb91e8d50e8cdf9f17487c86584efbfe4855 (commit)
      from  49ef97d8a1b783a35a81db555eadbea985b84a11 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7831eb91e8d50e8cdf9f17487c86584efbfe4855
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Fri May 17 13:26:19 2013 -0700

    [2946] simplified the previous fix further: just use it without any prefix.
    
    as stopIOService public any (non templated) derived class can use it.
    this seems to be the simplest and portable way to build it.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/asiodns/tests/dns_server_unittest.cc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-----------------------------------------------------------------------
diff --git a/src/lib/asiodns/tests/dns_server_unittest.cc b/src/lib/asiodns/tests/dns_server_unittest.cc
index 2b70935..521be1b 100644
--- a/src/lib/asiodns/tests/dns_server_unittest.cc
+++ b/src/lib/asiodns/tests/dns_server_unittest.cc
@@ -779,7 +779,7 @@ TEST_F(SyncServerTest, resetUDPServerBeforeEvent) {
     (*udp_server_)();
     udp_server_->stop();
     udp_server_.reset();
-    void (*prev_handler)(int) = std::signal(SIGALRM, this->stopIOService);
+    void (*prev_handler)(int) = std::signal(SIGALRM, stopIOService);
     current_service = &service;
     alarm(IO_SERVICE_TIME_OUT);
     service.run();



More information about the bind10-changes mailing list