]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1546] (unrelated cleanup) corrected typo in a function name
authorJINMEI Tatuya <jinmei@isc.org>
Wed, 11 Jan 2012 07:38:26 +0000 (23:38 -0800)
committerJINMEI Tatuya <jinmei@isc.org>
Wed, 11 Jan 2012 07:38:26 +0000 (23:38 -0800)
src/bin/auth/main.cc
src/bin/resolver/main.cc
src/lib/server_common/socket_request.cc
src/lib/server_common/socket_request.h
src/lib/server_common/tests/socket_requestor_test.cc

index ea809639bd3ce9f5c2f6bc6ff0d478ee89ac669e..dd9ca4501514f73e74c722ec9c409e60187a8b3f 100644 (file)
@@ -160,7 +160,7 @@ main(int argc, char* argv[]) {
         cc_session = new Session(io_service.get_io_service());
         LOG_DEBUG(auth_logger, DBG_AUTH_START, AUTH_CONFIG_CHANNEL_CREATED);
         // Initialize the Socket Requestor
-        isc::server_common::initSocketReqeustor(*cc_session);
+        isc::server_common::initSocketRequestor(*cc_session);
 
         // We delay starting listening to new commands/config just before we
         // go into the main loop to avoid confusion due to mixture of
index de47db77b041a585e1c4cf7d3130c8dbe3e3d262..b486d6d6023d30c1dcd9962f2ddf4f9272782856 100644 (file)
@@ -208,7 +208,7 @@ main(int argc, char* argv[]) {
         LOG_DEBUG(resolver_logger, RESOLVER_DBG_INIT, RESOLVER_SERVICE_CREATED);
 
         cc_session = new Session(io_service.get_io_service());
-        isc::server_common::initSocketReqeustor(*cc_session);
+        isc::server_common::initSocketRequestor(*cc_session);
 
         // We delay starting listening to new commands/config just before we
         // go into the main loop to avoid confusion due to mixture of
index e7695c753e9e9cfddb30ea81a3fa2cd1f39071cd..5b71ab2640d740706134771bd70ddf1178069f41 100644 (file)
@@ -380,7 +380,7 @@ socketRequestor() {
 }
 
 void
-initSocketReqeustor(cc::AbstractSession& session) {
+initSocketRequestor(cc::AbstractSession& session) {
     if (requestor != NULL) {
         isc_throw(InvalidOperation,
                   "The socket requestor was already initialized");
index 2983275d2badf8a523ee0b94636526c7d4b2d5fb..b67c66ac29a80921745859ab1f150bdbb48004f9 100644 (file)
@@ -168,7 +168,7 @@ SocketRequestor& socketRequestor();
 /// \param session the CC session that'll be used to talk to the
 ///                socket creator.
 /// \throw InvalidOperation when it is called more than once
-void initSocketReqeustor(cc::AbstractSession& session);
+void initSocketRequestor(cc::AbstractSession& session);
 
 /// \brief Initialization for tests
 ///
index 4cc4f5edcc001d17b6c963b42f2e08092568a3dc..fc5b3038e527b1e0ffe1b719b97625bd4ca6e329 100644 (file)
@@ -83,7 +83,7 @@ public:
                                     ElementPtr(new ListElement),
                                     ElementPtr(new ListElement))
     {
-        initSocketReqeustor(session);
+        initSocketRequestor(session);
     }
 
     ~SocketRequestorTest() {