BIND 10 trac2957, updated. ae6f706d85ae90ca971d2cfef2abfe7e5bc7856d [2957] Moved header #ifdef to beginning of header file where they're supposed to be.

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Jun 20 14:53:08 UTC 2013


The branch, trac2957 has been updated
       via  ae6f706d85ae90ca971d2cfef2abfe7e5bc7856d (commit)
      from  42e6736faa21f98de53a4ac0bc52306041581d91 (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 ae6f706d85ae90ca971d2cfef2abfe7e5bc7856d
Author: Thomas Markwalder <tmark at isc.org>
Date:   Thu Jun 20 10:51:21 2013 -0400

    [2957] Moved header #ifdef to beginning of header file where
    they're supposed to be.

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

Summary of changes:
 src/bin/d2/d2_cfg_mgr.h |    6 +++---
 src/bin/d2/d2_config.h  |    8 ++++----
 src/bin/d2/d_cfg_mgr.h  |    6 +++---
 3 files changed, 10 insertions(+), 10 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/bin/d2/d2_cfg_mgr.h b/src/bin/d2/d2_cfg_mgr.h
index 54692ce..ed4a561 100644
--- a/src/bin/d2/d2_cfg_mgr.h
+++ b/src/bin/d2/d2_cfg_mgr.h
@@ -12,6 +12,9 @@
 // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 // PERFORMANCE OF THIS SOFTWARE.
 
+#ifndef D2_CFG_MGR_H
+#define D2_CFG_MGR_H
+
 #include <asiolink/io_address.h>
 #include <cc/data.h>
 #include <exceptions/exceptions.h>
@@ -21,9 +24,6 @@
 #include <stdint.h>
 #include <string>
 
-#ifndef D2_CFG_MGR_H
-#define D2_CFG_MGR_H
-
 namespace isc {
 namespace d2 {
 
diff --git a/src/bin/d2/d2_config.h b/src/bin/d2/d2_config.h
index deb8b52..d07a54c 100644
--- a/src/bin/d2/d2_config.h
+++ b/src/bin/d2/d2_config.h
@@ -12,6 +12,9 @@
 // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 // PERFORMANCE OF THIS SOFTWARE.
 
+#ifndef D2_CONFIG_H
+#define D2_CONFIG_H
+
 #include <asiolink/io_address.h>
 #include <cc/data.h>
 #include <d2/d_cfg_mgr.h>
@@ -23,9 +26,6 @@
 #include <stdint.h>
 #include <string>
 
-#ifndef D2_CONFIG_H
-#define D2_CONFIG_H
-
 namespace isc {
 namespace d2 {
 
@@ -69,7 +69,7 @@ namespace d2 {
 /// A DnsServerInfoListParser creates and invokes a DnsServerInfoParser for
 /// each server entry in its list.
 ///
-/// A DdnsServerInfoParser handles the scalars which belong to th server.
+/// A DdnsServerInfoParser handles the scalars which belong to the server.
 
 /// @brief Exception thrown when the error during configuration handling
 /// occurs.
diff --git a/src/bin/d2/d_cfg_mgr.h b/src/bin/d2/d_cfg_mgr.h
index b5e4769..4f8b166 100644
--- a/src/bin/d2/d_cfg_mgr.h
+++ b/src/bin/d2/d_cfg_mgr.h
@@ -12,6 +12,9 @@
 // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 // PERFORMANCE OF THIS SOFTWARE.
 
+#ifndef D_CFG_MGR_H
+#define D_CFG_MGR_H
+
 #include <cc/data.h>
 #include <exceptions/exceptions.h>
 #include <dhcpsrv/dhcp_parsers.h>
@@ -19,9 +22,6 @@
 #include <stdint.h>
 #include <string>
 
-#ifndef D_CFG_MGR_H
-#define D_CFG_MGR_H
-
 namespace isc {
 namespace d2 {
 



More information about the bind10-changes mailing list