]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
u_int32_t -> isc_uint32_t
authorMark Andrews <marka@isc.org>
Mon, 28 Oct 2002 02:35:36 +0000 (02:35 +0000)
committerMark Andrews <marka@isc.org>
Mon, 28 Oct 2002 02:35:36 +0000 (02:35 +0000)
bin/named/client.c
lib/isccfg/parser.c

index 51c7596ee5220fe6064664baaa6e0c221766add0..304d589814a9f75c07081121ef8b432b3b42e468 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: client.c,v 1.212 2002/10/24 03:52:31 marka Exp $ */
+/* $Id: client.c,v 1.213 2002/10/28 02:35:36 marka Exp $ */
 
 #include <config.h>
 
@@ -1341,7 +1341,7 @@ client_request(isc_task_t *task, isc_event_t *event) {
         */
        if (client->interface->addr.type.sa.sa_family == AF_INET6) {
                if ((client->attributes & NS_CLIENTATTR_PKTINFO) != 0) {
-                       u_int32_t zone = 0;
+                       isc_uint32_t zone = 0;
 
                        /*
                         * XXXJT technically, we should convert the receiving
@@ -1352,7 +1352,7 @@ client_request(isc_task_t *task, isc_event_t *event) {
                         * it should cover most typical cases.
                         */
                        if (IN6_IS_ADDR_LINKLOCAL(&client->pktinfo.ipi6_addr))
-                               zone = (u_int32_t)client->pktinfo.ipi6_ifindex;
+                               zone = (isc_uint32_t)client->pktinfo.ipi6_ifindex;
 
                        isc_netaddr_fromin6(&destaddr,
                                            &client->pktinfo.ipi6_addr);
index edc8f44b4308b0d661131c0748a7558d3f9a9d8f..ef5521a9b9cd17c2f1c1a8f7cb933f5f634a24ec 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: parser.c,v 1.103 2002/10/24 03:52:35 marka Exp $ */
+/* $Id: parser.c,v 1.104 2002/10/28 02:35:32 marka Exp $ */
 
 #include <config.h>
 
@@ -1666,7 +1666,7 @@ token_addr(cfg_parser_t *pctx, unsigned int flags, isc_netaddr_t *na) {
                    strlen(s) <= 127) {
                        char buf[128];
                        char *d; /* zone delimiter */
-                       u_int32_t zone = 0; /* scope zone ID */
+                       isc_uint32_t zone = 0; /* scope zone ID */
 
                        strcpy(buf, s);
                        d = strchr(buf, '%');