Browse Source

[trac781] Merge branch 'trac781' of ssh://bind10.isc.org/var/bind10/git/bind10 into trac781

Conflicts:
	src/lib/dns/tsigkey.cc
Jelte Jansen 14 years ago
parent
commit
aa0ddfbb4f
2 changed files with 3 additions and 3 deletions
  1. 1 1
      src/lib/Makefile.am
  2. 2 2
      src/lib/dns/tsigkey.cc

+ 1 - 1
src/lib/Makefile.am

@@ -1,2 +1,2 @@
-SUBDIRS = exceptions crypto dns cc config python xfr bench log \
+SUBDIRS = exceptions dns crypto cc config python xfr bench log \
           asiolink nsas cache resolve testutils datasrc server_common

+ 2 - 2
src/lib/dns/tsigkey.cc

@@ -156,8 +156,8 @@ TSIGKey::toText() const {
     }
     std::string secret_str = encodeBase64(secret_v);
 
-    return getKeyName().toText() + ":" + secret_str + ":" +
-           getAlgorithmName().toText();
+    return (getKeyName().toText() + ":" + secret_str + ":" +
+            getAlgorithmName().toText());
 }
 
 const