]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[1261] a few typos
authorJelte Jansen <jelte@isc.org>
Wed, 5 Oct 2011 13:32:28 +0000 (15:32 +0200)
committerJelte Jansen <jelte@isc.org>
Wed, 5 Oct 2011 13:32:28 +0000 (15:32 +0200)
src/bin/xfrin/tests/xfrin_test.py
src/bin/xfrin/xfrin.py.in

index b013b2ef9e2165fa826c9d3a60cc6af13d6fbd6a..39a8d55702360747208f38f525239f4a6d50781d 100644 (file)
@@ -528,7 +528,7 @@ class TestXfrinConnection(unittest.TestCase):
 
         verify_ctx = None
         if self.soa_response_params['tsig']:
-            # xfrin (curreently) always uses TCP.  strip off the length field.
+            # xfrin (currently) always uses TCP.  strip off the length field.
             query_data = self.conn.query_data[2:]
             query_message = Message(Message.PARSE)
             query_message.from_wire(query_data)
index 86c32812189491b6307f238438cc8be2be18b638..5eb0e3fe29b6741217d04018d6e0d6ef2731168e 100755 (executable)
@@ -339,7 +339,7 @@ class XfrinConnection(asyncore.dispatcher):
                  sock_map, zone_name, rrclass, datasrc_client, db_file,
                  shutdown_event, master_addrinfo, tsig_key = None,
                  verbose=False, idle_timeout=60):
-        '''Constructor of the XfirnConnection class.
+        '''Constructor of the XfrinConnection class.
 
         idle_timeout: max idle time for read data from socket.
         datasrc_client: the data source client object used for the XFR session.
@@ -350,7 +350,7 @@ class XfrinConnection(asyncore.dispatcher):
 
         asyncore.dispatcher.__init__(self, map=sock_map)
 
-        # The XFR state.  Coceptually this is purely private, so we emphasize
+        # The XFR state.  Conceptually this is purely private, so we emphasize
         # the fact by the double underscore.  Other classes are assumed to
         # get access to this via get_xfrstate(), and only XfrinState classes
         # are assumed to be allowed to modify it via __set_xfrstate().