]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3245] Wordiing fix
authorThomas Markwalder <tmark@isc.org>
Thu, 22 Feb 2024 20:30:01 +0000 (15:30 -0500)
committerThomas Markwalder <tmark@isc.org>
Fri, 23 Feb 2024 12:08:04 +0000 (12:08 +0000)
modified:   pkt_filter_lpf.cc

src/lib/dhcp/pkt_filter_lpf.cc

index 37ce7c2d14883bbfad43d302d9aa369aa816a751..69bdecc0e17b4ac6e3b88ab790be1e5088a8b1c1 100644 (file)
@@ -192,7 +192,7 @@ PktFilterLPF::openSocket(Iface& iface,
     int enable = 1;
     if (setsockopt(sock, SOL_SOCKET, SO_TIMESTAMP, &enable, sizeof(enable))) {
         const char* errmsg = strerror(errno);
-        isc_throw(SocketConfigError, "Can not enable SO_TIMESTAMP for " << addr.toText()
+        isc_throw(SocketConfigError, "Could not enable SO_TIMESTAMP for " << addr.toText()
                   << ", error: " << errmsg);
     }
 #endif