BIND 10 trac1784, updated. bd2da89767c713fab31eb24cf5840cfe9b925d64 [1784] signed/unsigned fix
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Mar 19 17:14:32 UTC 2012
The branch, trac1784 has been updated
via bd2da89767c713fab31eb24cf5840cfe9b925d64 (commit)
from 8db9dee3621661108c12faedf26bfaf9381c13bb (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 bd2da89767c713fab31eb24cf5840cfe9b925d64
Author: JINMEI Tatuya <jinmei at isc.org>
Date: Mon Mar 19 10:14:22 2012 -0700
[1784] signed/unsigned fix
-----------------------------------------------------------------------
Summary of changes:
src/lib/asiodns/dns_service.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/asiodns/dns_service.cc b/src/lib/asiodns/dns_service.cc
index 1710922..ee7cf74 100644
--- a/src/lib/asiodns/dns_service.cc
+++ b/src/lib/asiodns/dns_service.cc
@@ -210,7 +210,7 @@ void DNSService::addServerTCPFromFD(int fd, int af) {
}
void DNSService::addServerUDPFromFD(int fd, int af, ServerFlag options) {
- if ((~SERVER_DEFINED_FLAGS & static_cast<int>(options)) != 0) {
+ if ((~SERVER_DEFINED_FLAGS & static_cast<unsigned int>(options)) != 0) {
isc_throw(isc::InvalidParameter, "Invalid DNS/UDP server option: "
<< options);
}
More information about the bind10-changes
mailing list