Module Name:    src
Committed By:   gutteridge
Date:           Tue Sep 12 21:19:53 UTC 2023

Modified Files:
        src/external/apache2/mDNSResponder/dist/mDNSCore: DNSCommon.c

Log Message:
DNSCommon.c: fix punctuation in a comment

This has very little value in itself; it's intended to make a material
change to this file to facilitate rebuilds. Otherwise, people running
update builds on branches will run into mismatches and build failures
after our switch to use arc4random(3). (That is, this change is
intended to be pulled up.)


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 \
    src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c
diff -u src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c:1.10 src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c:1.11
--- src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c:1.10	Sun Aug 13 18:57:07 2023
+++ src/external/apache2/mDNSResponder/dist/mDNSCore/DNSCommon.c	Tue Sep 12 21:19:53 2023
@@ -3754,7 +3754,7 @@ mDNSexport mStatus mDNSSendDNSMessage(mD
         m->UnicastPacketsSent++;
 #endif // APPLE_OSX_mDNSResponder
 
-    // Zero-length message data is okay (e.g. for a DNS Update ack, where all we need is an ID and an error code
+    // Zero-length message data is okay (e.g. for a DNS Update ack, where all we need is an ID and an error code)
     if (end < msg->data || end - msg->data > AbsoluteMaxDNSMessageData)
     {
         LogMsg("mDNSSendDNSMessage: invalid message %p %p %d", msg->data, end, end - msg->data);

Reply via email to