diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/Makefile.inc | 4 | ||||
-rw-r--r-- | lib/libc/gen/getcap.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/getdomainname.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/gethostname.3 | 4 | ||||
-rw-r--r-- | lib/libc/gmon/Makefile.inc | 4 | ||||
-rw-r--r-- | lib/libc/net/Makefile.inc | 7 | ||||
-rw-r--r-- | lib/libc/rpc/Makefile.inc | 8 | ||||
-rw-r--r-- | lib/libc/stdio/printf.3 | 6 | ||||
-rw-r--r-- | lib/libc/sys/issetugid.2 | 6 | ||||
-rw-r--r-- | lib/libc/termios/tcsetpgrp.3 | 4 |
10 files changed, 29 insertions, 22 deletions
diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc index de17321af12..da3a40534c5 100644 --- a/lib/libc/gen/Makefile.inc +++ b/lib/libc/gen/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.17 1998/07/04 08:52:34 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.18 1998/08/29 21:11:21 deraadt Exp $ # gen sources .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/gen ${.CURDIR}/gen @@ -98,5 +98,7 @@ MLINKS+=sigsetops.3 sigemptyset.3 sigsetops.3 sigfillset.3 \ sigsetops.3 sigismember.3 MLINKS+=syslog.3 closelog.3 syslog.3 openlog.3 syslog.3 setlogmask.3 \ syslog.3 vsyslog.3 +MLINKS+=tolower.3 _tolower.3 +MLINKS+=toupper.3 _toupper.3 MLINKS+=ttyname.3 isatty.3 ttyname.3 ttyslot.3 MLINKS+=vis.3 strvis.3 vis.3 strvisx.3 unvis.3 strunvis.3 diff --git a/lib/libc/gen/getcap.3 b/lib/libc/gen/getcap.3 index d5642cf4f3b..d3b826bf8b0 100644 --- a/lib/libc/gen/getcap.3 +++ b/lib/libc/gen/getcap.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getcap.3,v 1.4 1998/06/08 17:17:04 deraadt Exp $ +.\" $OpenBSD: getcap.3,v 1.5 1998/08/29 21:11:25 deraadt Exp $ .\" .\" Copyright (c) 1992, 1993 .\" The Regents of the University of California. All rights reserved. @@ -473,7 +473,7 @@ on failure. .Pp .Nm cgetent , and -.Nm cgetseq +.Nm cgetset may fail and set .Va errno for any of the errors specified for the library functions: diff --git a/lib/libc/gen/getdomainname.3 b/lib/libc/gen/getdomainname.3 index 87c85549212..37d6da5a781 100644 --- a/lib/libc/gen/getdomainname.3 +++ b/lib/libc/gen/getdomainname.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getdomainname.3,v 1.7 1998/07/24 00:43:45 espie Exp $ +.\" $OpenBSD: getdomainname.3,v 1.8 1998/08/29 21:11:26 deraadt Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -96,7 +96,7 @@ characters, currently 256. This includes the terminating NUL character. .Pp If the buffer passed to .Fn getdomainname -is too small, other operating systems may not gaurantee termination with NUL. +is too small, other operating systems may not guarantee termination with NUL. .Sh HISTORY The .Nm diff --git a/lib/libc/gen/gethostname.3 b/lib/libc/gen/gethostname.3 index 32b46fb9e1e..0a163061282 100644 --- a/lib/libc/gen/gethostname.3 +++ b/lib/libc/gen/gethostname.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: gethostname.3,v 1.6 1998/07/07 07:12:53 deraadt Exp $ +.\" $OpenBSD: gethostname.3,v 1.7 1998/08/29 21:11:28 deraadt Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -96,7 +96,7 @@ If the buffer passed to .Fn getdomainname is smaller than .Dv MAXHOSTNAMELEN , -other operating systems may not gaurantee termination with NUL. +other operating systems may not guarantee termination with NUL. .Sh HISTORY The .Nm diff --git a/lib/libc/gmon/Makefile.inc b/lib/libc/gmon/Makefile.inc index 72a67d1556a..3c4d53b572f 100644 --- a/lib/libc/gmon/Makefile.inc +++ b/lib/libc/gmon/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.2 1996/08/19 08:27:59 tholo Exp $ +# $OpenBSD: Makefile.inc,v 1.3 1998/08/29 21:11:38 deraadt Exp $ # gmon sources .PATH: ${.CURDIR}/gmon @@ -6,6 +6,8 @@ SRCS+= gmon.c mcount.c MAN+= moncontrol.3 +MLINKS+=moncontrol.3 monstartup.3 + # mcount cannot be compiled with profiling mcount.po: mcount.o cp mcount.o mcount.po diff --git a/lib/libc/net/Makefile.inc b/lib/libc/net/Makefile.inc index 377d244bcf9..935a1904c12 100644 --- a/lib/libc/net/Makefile.inc +++ b/lib/libc/net/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.15 1997/11/20 18:33:34 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.16 1998/08/29 21:11:40 deraadt Exp $ # net sources .PATH: ${.CURDIR}/arch/${MACHINE_ARCH}/net ${.CURDIR}/net @@ -31,10 +31,11 @@ MLINKS+=byteorder.3 htonl.3 byteorder.3 htons.3 byteorder.3 ntohl.3 \ byteorder.3 htole32.3 byteorder.3 letoh16.3 byteorder.3 letoh32.3 \ byteorder.3 swap16.3 byteorder.3 swap32.3 MLINKS+=ethers.3 ether_aton.3 ethers.3 ether_hostton.3 ethers.3 ether_line.3 \ - ethers.3 ether_ntoa.3 ethers.3 ether_ntohost.3 + ethers.3 ether_ntoa.3 ethers.3 ether_ntohost.3 ethers.3 ether_addr.3 MLINKS+=gethostbyname.3 endhostent.3 gethostbyname.3 gethostbyaddr.3 \ gethostbyname.3 sethostent.3 gethostbyname.3 gethostent.3 \ - gethostbyname.3 herror.3 gethostbyname.3 gethostbyname2.3 + gethostbyname.3 herror.3 gethostbyname.3 gethostbyname2.3 \ + gethostbyname.3 hstrerror.3 MLINKS+=getnetent.3 endnetent.3 getnetent.3 getnetbyaddr.3 \ getnetent.3 getnetbyname.3 getnetent.3 setnetent.3 MLINKS+=getprotoent.3 endprotoent.3 getprotoent.3 getprotobyname.3 \ diff --git a/lib/libc/rpc/Makefile.inc b/lib/libc/rpc/Makefile.inc index 0f14129274d..2265f6a8e0f 100644 --- a/lib/libc/rpc/Makefile.inc +++ b/lib/libc/rpc/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.6 1998/03/18 12:26:09 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.7 1998/08/29 21:11:47 deraadt Exp $ # librpc sources .PATH: ${.CURDIR}/arch/${MACHINE}/rpc ${.CURDIR}/rpc @@ -50,10 +50,11 @@ MLINKS+= getrpcent.3 getrpcbyname.3 \ rpc.3 svc_destroy.3 \ rpc.3 svc_fds.3 \ rpc.3 svc_fdset.3 \ + rpc.3 svc_freeargs.3 \ rpc.3 svc_getargs.3 \ rpc.3 svc_getcaller.3 \ - rpc.3 svc_getreg.3 \ - rpc.3 svc_getregset.3 \ + rpc.3 svc_getreq.3 \ + rpc.3 svc_getreqset.3 \ rpc.3 svc_register.3 \ rpc.3 svc_run.3 \ rpc.3 svc_sendreply.3 \ @@ -106,6 +107,7 @@ MLINKS+= getrpcent.3 getrpcbyname.3 \ xdr.3 xdrstdio_create.3 \ xdr.3 xdr_string.3 \ xdr.3 xdr_u_char.3 \ + xdr.3 xdr_u_int.3 \ xdr.3 xdr_u_long.3 \ xdr.3 xdr_u_short.3 \ xdr.3 xdr_union.3 \ diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3 index 653699fd458..7bfde8d32fa 100644 --- a/lib/libc/stdio/printf.3 +++ b/lib/libc/stdio/printf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.3,v 1.10 1998/07/14 21:18:07 deraadt Exp $ +.\" $OpenBSD: printf.3,v 1.11 1998/08/29 21:11:52 deraadt Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -48,10 +48,10 @@ .Nm asprintf , .Nm asnprintf , .Nm vprintf , -.Nm vfprintf, +.Nm vfprintf , .Nm vsprintf , .Nm vsnprintf , -.Nm vasprintf +.Nm vasprintf , .Nm vansprintf .Nd formatted output conversion .Sh SYNOPSIS diff --git a/lib/libc/sys/issetugid.2 b/lib/libc/sys/issetugid.2 index 283f32fbb05..580ae0f45e3 100644 --- a/lib/libc/sys/issetugid.2 +++ b/lib/libc/sys/issetugid.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: issetugid.2,v 1.12 1998/07/11 23:22:01 deraadt Exp $ +.\" $OpenBSD: issetugid.2,v 1.13 1998/08/29 21:11:59 deraadt Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -51,14 +51,14 @@ system calls. Otherwise it returns 0. .Pp This system call exists so that library routines (inside libtermlib, libc, -or other libraries) can gaurantee safe behavior when used inside +or other libraries) can guarantee safe behavior when used inside setuid or setgid programs. Some library routines may be passed insufficient information and hence not know whether the current program was started setuid or setgid because higher level calling code may have made changes to the uid, euid, gid, or egid. Hence these low-level library routines are unable to determine if they -are being run with elevated or normal priveledges. +are being run with elevated or normal privileges. .Pp In particular, it is wise to use this call to determine if a pathname returned from a diff --git a/lib/libc/termios/tcsetpgrp.3 b/lib/libc/termios/tcsetpgrp.3 index c88c3b73169..2338817b76f 100644 --- a/lib/libc/termios/tcsetpgrp.3 +++ b/lib/libc/termios/tcsetpgrp.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tcsetpgrp.3,v 1.4 1997/07/22 20:26:43 deraadt Exp $ +.\" $OpenBSD: tcsetpgrp.3,v 1.5 1998/08/29 21:12:05 deraadt Exp $ .\" .\" Copyright (c) 1991 The Regents of the University of California. .\" All rights reserved. @@ -94,7 +94,7 @@ session as the calling process. .Xr tcgetpgrp 3 .Sh STANDARDS The -.Nm tcsetpgprp +.Nm tcsetpgrp function is expected to be compliant with the .St -p1003.1-88 specification. |