]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Make casting easier in symbolic debuggers by using different names
authorMark Andrews <marka@isc.org>
Mon, 5 Feb 2007 03:47:45 +0000 (03:47 +0000)
committerMark Andrews <marka@isc.org>
Mon, 5 Feb 2007 03:47:45 +0000 (03:47 +0000)
for the 64 bit version.
(For some reason this wasn't applied to 9.2.x earlier.)

lib/dns/rbtdb.c

index cdb12259eb87c9ab6e28b4c2b05d133f5ca19c71..180aeae212ad6d5529e9719eee7cf10ea9a5ed48 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: rbtdb.c,v 1.168.2.26 2006/03/02 23:16:56 marka Exp $ */
+/* $Id: rbtdb.c,v 1.168.2.27 2007/02/05 03:47:45 marka Exp $ */
 
 /*
  * Principal Author: Bob Halley
 
 #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
+#define rbtdb_search_t rbtdb_search64_t
 #else
 typedef isc_uint32_t                   rbtdb_serial_t;
 #endif