summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-07-25 09:04:37 +1000
committerDamien Miller <djm@mindrot.org>2000-07-25 09:04:37 +1000
commit7b60a17f14304bd8f46c1d6b2e20382f54d79014 (patch)
treeb3d6b9d2f7c578a5eca1534b6cc7f815b806895d
parent994cf1426d176e2ee9ba310416544c325e04b155 (diff)
- (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
-rw-r--r--ChangeLog3
-rw-r--r--bsd-bindresvport.c4
-rw-r--r--bsd-bindresvport.h10
3 files changed, 10 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 17c0aec6..41daac00 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20000725
+ - (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
+
20000721
- (djm) OpenBSD CVS updates:
- markus@cvs.openbsd.org 2000/07/16 02:27:22
diff --git a/bsd-bindresvport.c b/bsd-bindresvport.c
index 15bb667d..fb3f6f2b 100644
--- a/bsd-bindresvport.c
+++ b/bsd-bindresvport.c
@@ -29,7 +29,7 @@
#include "config.h"
-#ifndef HAVE_BINRESVPORT_AF
+#ifndef HAVE_BINDRESVPORT_AF
#if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "$OpenBSD: bindresvport.c,v 1.11 1999/12/17 19:22:08 deraadt Exp $";
@@ -109,4 +109,4 @@ bindresvport_af(sd, sa, af)
return (error);
}
-#endif /* HAVE_BINRESVPORT_AF */
+#endif /* HAVE_BINDRESVPORT_AF */
diff --git a/bsd-bindresvport.h b/bsd-bindresvport.h
index df084e3d..4ef4c2f3 100644
--- a/bsd-bindresvport.h
+++ b/bsd-bindresvport.h
@@ -1,10 +1,10 @@
-#ifndef _BSD_BINRESVPORT_H
-#define _BSD_BINRESVPORT_H
+#ifndef _BSD_BINDRESVPORT_H
+#define _BSD_BINDRESVPORT_H
#include "config.h"
-#ifndef HAVE_BINRESVPORT_AF
+#ifndef HAVE_BINDRESVPORT_AF
int bindresvport_af(int sd, struct sockaddr *sa, int af);
-#endif /* !HAVE_BINRESVPORT_AF */
+#endif /* !HAVE_BINDRESVPORT_AF */
-#endif /* _BSD_BINRESVPORT_H */
+#endif /* _BSD_BINDRESVPORT_H */