summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorderaadt <>2019-08-30 18:33:17 +0000
committerderaadt <>2019-08-30 18:33:17 +0000
commit8246156efcf91d8f31624e8dd455eee553240f60 (patch)
tree538e1664547aeefad8ffe457703c860ce752d069
parent72036bf4bbef02536427f2044486d9b6d6e2e355 (diff)
downloadopenbsd-8246156efcf91d8f31624e8dd455eee553240f60.tar.gz
openbsd-8246156efcf91d8f31624e8dd455eee553240f60.tar.bz2
openbsd-8246156efcf91d8f31624e8dd455eee553240f60.zip
Move 4 manual pages from not-a-function filenames to a correct filename,
and correct Xr. ok jmc
-rw-r--r--src/lib/libc/net/Makefile.inc8
-rw-r--r--src/lib/libc/net/ether_aton.3 (renamed from src/lib/libc/net/ethers.3)4
-rw-r--r--src/lib/libc/net/htobe64.3 (renamed from src/lib/libc/net/byteorder.3)4
-rw-r--r--src/lib/libc/net/inet_addr.36
-rw-r--r--src/lib/libc/net/inet_net_ntop.3 (renamed from src/lib/libc/net/inet_net.3)6
-rw-r--r--src/lib/libc/net/res_init.3 (renamed from src/lib/libc/net/resolver.3)4
6 files changed, 16 insertions, 16 deletions
diff --git a/src/lib/libc/net/Makefile.inc b/src/lib/libc/net/Makefile.inc
index b78cd6be85..41a3164d6a 100644
--- a/src/lib/libc/net/Makefile.inc
+++ b/src/lib/libc/net/Makefile.inc
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile.inc,v 1.59 2016/03/30 06:38:41 jmc Exp $ 1# $OpenBSD: Makefile.inc,v 1.60 2019/08/30 18:33:17 deraadt Exp $
2 2
3# net sources 3# net sources
4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/net ${LIBCSRCDIR}/net 4.PATH: ${LIBCSRCDIR}/arch/${MACHINE_CPU}/net ${LIBCSRCDIR}/net
@@ -28,9 +28,9 @@ SRCS+= ip6opt.c rthdr.c vars6.c
28 28
29.include "${LIBCSRCDIR}/arch/${MACHINE_CPU}/net/Makefile.inc" 29.include "${LIBCSRCDIR}/arch/${MACHINE_CPU}/net/Makefile.inc"
30 30
31MAN+= byteorder.3 ethers.3 gai_strerror.3 getaddrinfo.3 gethostbyname.3 \ 31MAN+= htobe64.3 ether_aton.3 gai_strerror.3 getaddrinfo.3 gethostbyname.3 \
32 getifaddrs.3 getnameinfo.3 getnetent.3 getpeereid.3 getprotoent.3 \ 32 getifaddrs.3 getnameinfo.3 getnetent.3 getpeereid.3 getprotoent.3 \
33 getrrsetbyname.3 getservent.3 htonl.3 if_indextoname.3 \ 33 getrrsetbyname.3 getservent.3 htonl.3 if_indextoname.3 \
34 inet_addr.3 inet_lnaof.3 inet_net.3 inet_ntop.3 \ 34 inet_addr.3 inet_lnaof.3 inet_net_ntop.3 inet_ntop.3 \
35 inet6_opt_init.3 inet6_rth_space.3 link_ntoa.3 \ 35 inet6_opt_init.3 inet6_rth_space.3 link_ntoa.3 \
36 rcmd.3 rcmdsh.3 resolver.3 sockatmark.3 36 rcmd.3 rcmdsh.3 res_init.3 sockatmark.3
diff --git a/src/lib/libc/net/ethers.3 b/src/lib/libc/net/ether_aton.3
index 021e1ced73..98beb5e492 100644
--- a/src/lib/libc/net/ethers.3
+++ b/src/lib/libc/net/ether_aton.3
@@ -1,8 +1,8 @@
1.\" $OpenBSD: ethers.3,v 1.25 2018/11/09 17:49:32 brynet Exp $ 1.\" $OpenBSD: ether_aton.3,v 1.1 2019/08/30 18:33:17 deraadt Exp $
2.\" 2.\"
3.\" Written by roland@frob.com. Public domain. 3.\" Written by roland@frob.com. Public domain.
4.\" 4.\"
5.Dd $Mdocdate: November 9 2018 $ 5.Dd $Mdocdate: August 30 2019 $
6.Dt ETHER_ATON 3 6.Dt ETHER_ATON 3
7.Os 7.Os
8.Sh NAME 8.Sh NAME
diff --git a/src/lib/libc/net/byteorder.3 b/src/lib/libc/net/htobe64.3
index 98f6aff362..3e500897e2 100644
--- a/src/lib/libc/net/byteorder.3
+++ b/src/lib/libc/net/htobe64.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: byteorder.3,v 1.22 2015/11/10 23:48:18 jmc Exp $ 1.\" $OpenBSD: htobe64.3,v 1.1 2019/08/30 18:33:17 deraadt Exp $
2.\" 2.\"
3.\" Copyright (c) 1983, 1991, 1993 3.\" Copyright (c) 1983, 1991, 1993
4.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
@@ -27,7 +27,7 @@
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE. 28.\" SUCH DAMAGE.
29.\" 29.\"
30.Dd $Mdocdate: November 10 2015 $ 30.Dd $Mdocdate: August 30 2019 $
31.Dt HTOBE64 3 31.Dt HTOBE64 3
32.Os 32.Os
33.Sh NAME 33.Sh NAME
diff --git a/src/lib/libc/net/inet_addr.3 b/src/lib/libc/net/inet_addr.3
index 231f94ff1b..77d5cde9c7 100644
--- a/src/lib/libc/net/inet_addr.3
+++ b/src/lib/libc/net/inet_addr.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: inet_addr.3,v 1.3 2018/04/28 16:03:43 schwarze Exp $ 1.\" $OpenBSD: inet_addr.3,v 1.4 2019/08/30 18:33:17 deraadt Exp $
2.\" $NetBSD: inet.3,v 1.7 1997/06/18 02:25:24 lukem Exp $ 2.\" $NetBSD: inet.3,v 1.7 1997/06/18 02:25:24 lukem Exp $
3.\" 3.\"
4.\" Copyright (c) 1983, 1990, 1991, 1993 4.\" Copyright (c) 1983, 1990, 1991, 1993
@@ -30,7 +30,7 @@
30.\" 30.\"
31.\" @(#)inet.3 8.1 (Berkeley) 6/4/93 31.\" @(#)inet.3 8.1 (Berkeley) 6/4/93
32.\" 32.\"
33.Dd $Mdocdate: April 28 2018 $ 33.Dd $Mdocdate: August 30 2019 $
34.Dt INET_ADDR 3 34.Dt INET_ADDR 3
35.Os 35.Os
36.Sh NAME 36.Sh NAME
@@ -144,7 +144,7 @@ in the C language (i.e., a leading 0x or 0X implies
144hexadecimal; a leading 0 implies octal; 144hexadecimal; a leading 0 implies octal;
145otherwise, the number is interpreted as decimal). 145otherwise, the number is interpreted as decimal).
146.Sh SEE ALSO 146.Sh SEE ALSO
147.Xr byteorder 3 , 147.Xr htonl 3 ,
148.Xr gethostbyname 3 , 148.Xr gethostbyname 3 ,
149.Xr inet_lnaof 3 , 149.Xr inet_lnaof 3 ,
150.Xr inet_net 3 , 150.Xr inet_net 3 ,
diff --git a/src/lib/libc/net/inet_net.3 b/src/lib/libc/net/inet_net_ntop.3
index adb7589fca..db10bf962c 100644
--- a/src/lib/libc/net/inet_net.3
+++ b/src/lib/libc/net/inet_net_ntop.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: inet_net.3,v 1.19 2018/04/28 20:29:18 schwarze Exp $ 1.\" $OpenBSD: inet_net_ntop.3,v 1.1 2019/08/30 18:33:17 deraadt Exp $
2.\" $NetBSD: inet_net.3,v 1.1 1997/06/18 02:25:27 lukem Exp $ 2.\" $NetBSD: inet_net.3,v 1.1 1997/06/18 02:25:27 lukem Exp $
3.\" 3.\"
4.\" Copyright (c) 1997 The NetBSD Foundation, Inc. 4.\" Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -28,7 +28,7 @@
28.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 28.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29.\" POSSIBILITY OF SUCH DAMAGE. 29.\" POSSIBILITY OF SUCH DAMAGE.
30.\" 30.\"
31.Dd $Mdocdate: April 28 2018 $ 31.Dd $Mdocdate: August 30 2019 $
32.Dt INET_NET_NTOP 3 32.Dt INET_NET_NTOP 3
33.Os 33.Os
34.Sh NAME 34.Sh NAME
@@ -185,7 +185,7 @@ notation, the value of the address still includes all bits supplied
185in the external representation, even those bits which are the host 185in the external representation, even those bits which are the host
186part of an Internet address. 186part of an Internet address.
187.Sh SEE ALSO 187.Sh SEE ALSO
188.Xr byteorder 3 , 188.Xr htonl 3 ,
189.Xr inet_pton 3 , 189.Xr inet_pton 3 ,
190.Xr inet 4 , 190.Xr inet 4 ,
191.Xr hosts 5 191.Xr hosts 5
diff --git a/src/lib/libc/net/resolver.3 b/src/lib/libc/net/res_init.3
index e354bdbec4..01a6b8e0b3 100644
--- a/src/lib/libc/net/resolver.3
+++ b/src/lib/libc/net/res_init.3
@@ -1,4 +1,4 @@
1.\" $OpenBSD: resolver.3,v 1.39 2019/05/13 14:11:20 schwarze Exp $ 1.\" $OpenBSD: res_init.3,v 1.1 2019/08/30 18:33:17 deraadt Exp $
2.\" 2.\"
3.\" Copyright (c) 1985, 1991, 1993 3.\" Copyright (c) 1985, 1991, 1993
4.\" The Regents of the University of California. All rights reserved. 4.\" The Regents of the University of California. All rights reserved.
@@ -27,7 +27,7 @@
27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28.\" SUCH DAMAGE. 28.\" SUCH DAMAGE.
29.\" 29.\"
30.Dd $Mdocdate: May 13 2019 $ 30.Dd $Mdocdate: August 30 2019 $
31.Dt RES_INIT 3 31.Dt RES_INIT 3
32.Os 32.Os
33.Sh NAME 33.Sh NAME