BIND 10 trac3221, updated. 400bf9a1f5d4e667c72a51255a2477721876d103 [3221] Fixed minor compilation errors in dhcp_ddns::WatchSocket
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Feb 6 12:41:09 UTC 2014
The branch, trac3221 has been updated
via 400bf9a1f5d4e667c72a51255a2477721876d103 (commit)
from b3493c2c68c1ee9bb7688ef66eb01643d3d672a8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 400bf9a1f5d4e667c72a51255a2477721876d103
Author: Thomas Markwalder <tmark at isc.org>
Date: Thu Feb 6 07:39:59 2014 -0500
[3221] Fixed minor compilation errors in dhcp_ddns::WatchSocket
Compilation under Fedora turned a couple of missing includes,
errno.h and stdint.h.
-----------------------------------------------------------------------
Summary of changes:
src/lib/dhcp_ddns/watch_socket.cc | 2 ++
src/lib/dhcp_ddns/watch_socket.h | 2 ++
2 files changed, 4 insertions(+)
-----------------------------------------------------------------------
diff --git a/src/lib/dhcp_ddns/watch_socket.cc b/src/lib/dhcp_ddns/watch_socket.cc
index 3f2a502..a123fa2 100644
--- a/src/lib/dhcp_ddns/watch_socket.cc
+++ b/src/lib/dhcp_ddns/watch_socket.cc
@@ -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 {
diff --git a/src/lib/dhcp_ddns/watch_socket.h b/src/lib/dhcp_ddns/watch_socket.h
index 5d2b310..d0113f7 100644
--- a/src/lib/dhcp_ddns/watch_socket.h
+++ b/src/lib/dhcp_ddns/watch_socket.h
@@ -21,6 +21,8 @@
#include <boost/shared_ptr.hpp>
+#include <stdint.h>
+
namespace isc {
namespace dhcp_ddns {
More information about the bind10-changes
mailing list