Browse Source

[1261] a small wording fix as suggested in review

JINMEI Tatuya 13 years ago
parent
commit
c4344fadc9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/xfrin/xfrin.py.in

+ 1 - 1
src/bin/xfrin/xfrin.py.in

@@ -229,7 +229,7 @@ class XfrinInitialSOA(XfrinState):
     def handle_rr(self, conn, rr):
         if rr.get_type() != RRType.SOA():
             raise XfrinProtocolError('First RR in zone transfer must be SOA ('
-                                     + rr.get_type().to_text() + ' given)')
+                                     + rr.get_type().to_text() + ' received)')
         conn._end_serial = get_soa_serial(rr.get_rdata()[0])
 
         # FIXME: we need to check the serial is actually greater than ours.