]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3221] Fixed minor compilation errors in dhcp_ddns::WatchSocket
authorThomas Markwalder <tmark@isc.org>
Thu, 6 Feb 2014 12:39:59 +0000 (07:39 -0500)
committerThomas Markwalder <tmark@isc.org>
Thu, 6 Feb 2014 12:39:59 +0000 (07:39 -0500)
Compilation under Fedora turned a couple of missing includes,
errno.h and stdint.h.

src/lib/dhcp_ddns/watch_socket.cc
src/lib/dhcp_ddns/watch_socket.h

index 3f2a5024120aa10ecfcef1bcde8f1d27dd4040ae..a123fa2ce7db744c986d73cc07744a91d43a5bda 100644 (file)
@@ -17,6 +17,8 @@
 #include <dhcp_ddns/dhcp_ddns_log.h>
 #include <dhcp_ddns/watch_socket.h>
 
+#include <errno.h>
+
 namespace isc {
 namespace dhcp_ddns {
 
index 5d2b31083566b28a485df75d07b8acbd26049f28..d0113f72e099dc8e9c5b513643191514c01334a6 100644 (file)
@@ -21,6 +21,8 @@
 
 #include <boost/shared_ptr.hpp>
 
+#include <stdint.h>
+
 namespace isc {
 namespace dhcp_ddns {