summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 17c0aec65..41daac006 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120000725
2 - (djm) Fix autoconf typo: HAVE_BINRESVPORT_AF -> HAVE_BINDRESVPORT_AF
3
120000721 420000721
2 - (djm) OpenBSD CVS updates: 5 - (djm) OpenBSD CVS updates:
3 - markus@cvs.openbsd.org 2000/07/16 02:27:22 6 - markus@cvs.openbsd.org 2000/07/16 02:27:22
diff --git a/bsd-bindresvport.c b/bsd-bindresvport.c
index 15bb667da..fb3f6f2b8 100644
--- a/bsd-bindresvport.c
+++ b/bsd-bindresvport.c
@@ -29,7 +29,7 @@
29 29
30#include "config.h" 30#include "config.h"
31 31
32#ifndef HAVE_BINRESVPORT_AF 32#ifndef HAVE_BINDRESVPORT_AF
33 33
34#if defined(LIBC_SCCS) && !defined(lint) 34#if defined(LIBC_SCCS) && !defined(lint)
35static char *rcsid = "$OpenBSD: bindresvport.c,v 1.11 1999/12/17 19:22:08 deraadt Exp $"; 35static 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)
109 return (error); 109 return (error);
110} 110}
111 111
112#endif /* HAVE_BINRESVPORT_AF */ 112#endif /* HAVE_BINDRESVPORT_AF */
diff --git a/bsd-bindresvport.h b/bsd-bindresvport.h
index df084e3dc..4ef4c2f3a 100644
--- a/bsd-bindresvport.h
+++ b/bsd-bindresvport.h
@@ -1,10 +1,10 @@
1#ifndef _BSD_BINRESVPORT_H 1#ifndef _BSD_BINDRESVPORT_H
2#define _BSD_BINRESVPORT_H 2#define _BSD_BINDRESVPORT_H
3 3
4#include "config.h" 4#include "config.h"
5 5
6#ifndef HAVE_BINRESVPORT_AF 6#ifndef HAVE_BINDRESVPORT_AF
7int bindresvport_af(int sd, struct sockaddr *sa, int af); 7int bindresvport_af(int sd, struct sockaddr *sa, int af);
8#endif /* !HAVE_BINRESVPORT_AF */ 8#endif /* !HAVE_BINDRESVPORT_AF */
9 9
10#endif /* _BSD_BINRESVPORT_H */ 10#endif /* _BSD_BINDRESVPORT_H */