Browse Source

Let auth module send notify command to zone manager.

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/trac289@2630 e5f2f494-b856-4b98-b285-d166d9295462
Likun Zhang 15 years ago
parent
commit
a10e034168
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/bin/auth/auth_srv.cc

+ 3 - 3
src/bin/auth/auth_srv.cc

@@ -431,7 +431,7 @@ AuthSrvImpl::processNotify(const IOMessage& io_message, Message& message,
                 command_template_rrclass + question->getClass().toText() +
                 command_template_end);
         const unsigned int seq =
-            xfrin_session_->group_sendmsg(notify_command, "Xfrin",
+            xfrin_session_->group_sendmsg(notify_command, "Zonemgr",
                                           "*", "*");
         ElementPtr env, answer, parsed_answer;
         xfrin_session_->group_recvmsg(env, answer, false, seq);
@@ -439,14 +439,14 @@ AuthSrvImpl::processNotify(const IOMessage& io_message, Message& message,
         parsed_answer = parseAnswer(rcode, answer);
         if (rcode != 0) {
             if (verbose_mode_) {
-                cerr << "[b10-auth] failed to notify Xfrin: "
+                cerr << "[b10-auth] failed to notify Zonemgr: "
                      << parsed_answer->str() << endl; 
             }
             return (false);
         }
     } catch (const Exception& ex) {
         if (verbose_mode_) {
-            cerr << "[b10-auth] failed to notify Xfrin: " << ex.what() << endl;
+            cerr << "[b10-auth] failed to notify Zonemgr: " << ex.what() << endl;
         }
         return (false);
     }