From 8576792c837735332fca2986b68f1da97d818958 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Sat, 13 Dec 2003 20:30:08 +0000 Subject: [PATCH] remove depency on c99 types git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13211 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/resolve.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/roken/resolve.h b/lib/roken/resolve.h index 0ec360e35..e8e63f1a5 100644 --- a/lib/roken/resolve.h +++ b/lib/roken/resolve.h @@ -176,12 +176,12 @@ typedef int HEADER; /* will never be used */ #endif struct dns_header { - u_int16_t id; - u_int16_t misc; - u_int16_t qdcount; - u_int16_t ancount; - u_int16_t nscount; - u_int16_t arcount; + unsigned id; + unsigned misc; + unsigned qdcount; + unsigned ancount; + unsigned nscount; + unsigned arcount; }; struct dns_reply{