Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/crypto/dist/heimdal/lib/roken alias dns functions so we don'...
details: https://anonhg.NetBSD.org/src/rev/126762a1d40a
branches: trunk
changeset: 536270:126762a1d40a
user: joda <joda%NetBSD.org@localhost>
date: Thu Sep 12 14:10:25 2002 +0000
description:
alias dns functions so we don't have to bump major
diffstat:
crypto/dist/heimdal/lib/roken/resolve.c | 15 ++++++++++++++-
1 files changed, 14 insertions(+), 1 deletions(-)
diffs (32 lines):
diff -r 9a204c60324b -r 126762a1d40a crypto/dist/heimdal/lib/roken/resolve.c
--- a/crypto/dist/heimdal/lib/roken/resolve.c Thu Sep 12 13:39:53 2002 +0000
+++ b/crypto/dist/heimdal/lib/roken/resolve.c Thu Sep 12 14:10:25 2002 +0000
@@ -46,7 +46,7 @@
#include <assert.h>
__RCSID("$Heimdal: resolve.c,v 1.36 2002/09/09 21:39:19 joda Exp $"
- "$NetBSD: resolve.c,v 1.3 2002/09/12 13:19:21 joda Exp $");
+ "$NetBSD: resolve.c,v 1.4 2002/09/12 14:10:25 joda Exp $");
#undef HAVE_RES_NSEARCH
#if (defined(HAVE_RES_SEARCH) || defined(HAVE_RES_NSEARCH)) && defined(HAVE_DN_EXPAND)
@@ -532,6 +532,19 @@
return;
}
+#if defined(__NetBSD__) && defined(__weak_alias)
+#undef dns_lookup
+#undef dns_free_data
+#undef dns_srv_order
+#undef dns_string_to_type
+#undef dns_type_to_string
+__weak_alias(dns_lookup, rk_dns_lookup);
+__weak_alias(dns_free_data, rk_dns_free_data);
+__weak_alias(dns_srv_order, rk_dns_srv_order);
+__weak_alias(dns_string_to_type, rk_dns_string_to_type);
+__weak_alias(dns_type_to_string, rk_dns_type_to_string);
+#endif
+
#else /* NOT defined(HAVE_RES_SEARCH) && defined(HAVE_DN_EXPAND) */
struct dns_reply *
Home |
Main Index |
Thread Index |
Old Index