summaryrefslogtreecommitdiff
path: root/sbin/isakmpd
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2000-11-19 21:27:14 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2000-11-19 21:27:14 +0000
commit4083bf5a48b82e608ea83992f2fbd4b25c28791f (patch)
tree6a911019f15f4bec6910dfd95fbe7b249c34be7a /sbin/isakmpd
parent75c04bb0c933ffc13a3dc9e0f2b13c226d0a7b88 (diff)
XXX - Alpha port doesn't currently support weak symbols
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r--sbin/isakmpd/sysdep/openbsd/keynote_compat.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sbin/isakmpd/sysdep/openbsd/keynote_compat.c b/sbin/isakmpd/sysdep/openbsd/keynote_compat.c
index b884c274bec..9c67a028599 100644
--- a/sbin/isakmpd/sysdep/openbsd/keynote_compat.c
+++ b/sbin/isakmpd/sysdep/openbsd/keynote_compat.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: keynote_compat.c,v 1.1 2000/10/16 23:26:54 niklas Exp $ */
+/* $OpenBSD: keynote_compat.c,v 1.2 2000/11/19 21:27:13 millert Exp $ */
/* $EOM: keynote_compat.c,v 1.1 2000/10/15 19:18:26 niklas Exp $ */
/*
@@ -35,10 +35,13 @@
* updating some kind of version preprocessor symbol we can test.
* Provide weak functions that can be used if the libkeynote version
* we link against miss them.
+ * XXX - Alpha does not currently support weak functions.
*/
+#ifndef __alpha__
#pragma weak kn_get_string=_kn_get_string
#pragma weak kn_free_key=_kn_free_key
+#endif
/*
* The author of this code is Angelos D. Keromytis (angelos@dsl.cis.upenn.edu)