BIND 10 trac1522, updated. 412ea40020ab62f1b83fa78aa41d2b461f97a996 [1522] style fix: added parentheses for return

BIND 10 source code commits bind10-changes at lists.isc.org
Wed Dec 28 22:58:51 UTC 2011


The branch, trac1522 has been updated
       via  412ea40020ab62f1b83fa78aa41d2b461f97a996 (commit)
      from  67f67098c15323d3760976a15f3d2a5d81b0b83f (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 412ea40020ab62f1b83fa78aa41d2b461f97a996
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Wed Dec 28 14:58:13 2011 -0800

    [1522] style fix: added parentheses for return

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

Summary of changes:
 src/lib/config/ccsession.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/config/ccsession.h b/src/lib/config/ccsession.h
index 0f8e34a..80ef7c5 100644
--- a/src/lib/config/ccsession.h
+++ b/src/lib/config/ccsession.h
@@ -330,7 +330,7 @@ public:
                      std::string group,
                      std::string instance = "*",
                      std::string to = "*") {
-        return session_.group_sendmsg(msg, group, instance, to);
+        return (session_.group_sendmsg(msg, group, instance, to));
     };
 
     /**
@@ -347,7 +347,7 @@ public:
                       isc::data::ConstElementPtr& msg,
                       bool nonblock = true,
                       int seq = -1) {
-        return session_.group_recvmsg(envelope, msg, nonblock, seq);
+        return (session_.group_recvmsg(envelope, msg, nonblock, seq));
     };
 
 private:




More information about the bind10-changes mailing list