From 2bb3d8bdfefd3f551621297ad439409332f5e779 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Tue, 18 Sep 2001 14:30:10 +0000 Subject: [PATCH] Make casting easier in symbolic debuggers by using different names for the 64 bit version. --- lib/dns/rbtdb.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/dns/rbtdb.c b/lib/dns/rbtdb.c index bc2e540b29..8ef1fa7d99 100644 --- a/lib/dns/rbtdb.c +++ b/lib/dns/rbtdb.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: rbtdb.c,v 1.168 2001/08/27 03:58:44 marka Exp $ */ +/* $Id: rbtdb.c,v 1.169 2001/09/18 14:30:10 marka Exp $ */ /* * Principal Author: Bob Halley @@ -66,6 +66,13 @@ #ifdef DNS_RBTDB_VERSION64 typedef isc_uint64_t rbtdb_serial_t; +/* + * Make casting easier in symbolic debuggers by using different names + * for the 64 bit version. + */ +#define dns_rbtdb_t dns_rbtdb64_t +#define rdatasetheader_t rdatasetheader64_t +#define rbtdb_version_t rbtdb_version64_t #else typedef isc_uint32_t rbtdb_serial_t; #endif