diff options
author | Richard Lowe <richlowe@richlowe.net> | 2022-02-26 16:40:47 -0600 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2022-03-10 01:14:35 -0600 |
commit | bbf215553c7233fbab8a0afdf1fac74c44781867 (patch) | |
tree | e698415c5d1265b368c58c56199244dc2be86500 /usr/src/common | |
parent | 236cb9a89d936b4b681853751c9af1adccc35ef9 (diff) | |
download | illumos-joyent-bbf215553c7233fbab8a0afdf1fac74c44781867.tar.gz |
14443 resection manual pages per IPD4
Reviewed by: Toomas Soome <tsoome@me.com>
Reviewed by: Robert Mustacchi <rm@fingolfin.org>
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: Andy Fiddaman <andy@omnios.org>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/common')
-rw-r--r-- | usr/src/common/smbios/mktables.sh | 2 | ||||
-rw-r--r-- | usr/src/common/svc/repcache_protocol.h | 4 | ||||
-rw-r--r-- | usr/src/common/util/string.c | 2 | ||||
-rw-r--r-- | usr/src/common/zfs/zfs_prop.c | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/usr/src/common/smbios/mktables.sh b/usr/src/common/smbios/mktables.sh index 7256eedfb8..8cb9d60052 100644 --- a/usr/src/common/smbios/mktables.sh +++ b/usr/src/common/smbios/mktables.sh @@ -31,7 +31,7 @@ # # The SMBIOS interfaces defined in <sys/smbios.h> include a set of integer-to- # string conversion routines for the various constants defined in the SMBIOS -# spec. These functions are used by smbios(1M) and prtdiag(1M) and can be +# spec. These functions are used by smbios(8) and prtdiag(8) and can be # leveraged by other clients as well. To simplify maintenance of the source # base, this shell script automatically generates the source code for all of # these functions from the <sys/smbios.h> header file and its comments. Each diff --git a/usr/src/common/svc/repcache_protocol.h b/usr/src/common/svc/repcache_protocol.h index 07504a467e..a334cea34a 100644 --- a/usr/src/common/svc/repcache_protocol.h +++ b/usr/src/common/svc/repcache_protocol.h @@ -34,7 +34,7 @@ * 1. Introduction * --------------- * This header file defines the private protocols between libscf(3lib) and - * svc.configd(1m). There are two separate protocols: + * svc.configd(8). There are two separate protocols: * * 1. The 'global' protocol, accessible via an fattach(3C)ed door located * at REPOSITORY_DOOR_NAME. @@ -50,7 +50,7 @@ * 1. If libscf(3lib) recieves an EINTR from door_call(), it doesn't know * whether or not the server recieved (and is processing) its request. * - * 2. When svc.configd(1M) calls door_return(), the client may have already + * 2. When svc.configd(8) calls door_return(), the client may have already * received an EINTR, aborting its door_call(). In this case, the * returned values are dropped on the floor. * diff --git a/usr/src/common/util/string.c b/usr/src/common/util/string.c index de22fb78d9..8e1247f381 100644 --- a/usr/src/common/util/string.c +++ b/usr/src/common/util/string.c @@ -61,7 +61,7 @@ * described by <fmt, args> as possible. The string will always be * null-terminated, so the maximum string length is 'buflen - 1'. * Returns the number of bytes that would be necessary to render the - * entire string, not including null terminator (just like vsnprintf(3S)). + * entire string, not including null terminator (just like vsnprintf(3C)). * To determine buffer size in advance, use vsnprintf(NULL, 0, fmt, args) + 1. * * There is no support for floating point, and the C locale is assumed. diff --git a/usr/src/common/zfs/zfs_prop.c b/usr/src/common/zfs/zfs_prop.c index a4f02b18db..dd79442179 100644 --- a/usr/src/common/zfs/zfs_prop.c +++ b/usr/src/common/zfs/zfs_prop.c @@ -396,14 +396,14 @@ zfs_prop_init(void) PROP_INHERIT, ZFS_TYPE_FILESYSTEM, "<path> | legacy | none", "MOUNTPOINT"); zprop_register_string(ZFS_PROP_SHARENFS, "sharenfs", "off", - PROP_INHERIT, ZFS_TYPE_FILESYSTEM, "on | off | share(1M) options", + PROP_INHERIT, ZFS_TYPE_FILESYSTEM, "on | off | share(8) options", "SHARENFS"); zprop_register_string(ZFS_PROP_TYPE, "type", NULL, PROP_READONLY, ZFS_TYPE_DATASET | ZFS_TYPE_BOOKMARK, "filesystem | volume | snapshot | bookmark", "TYPE"); zprop_register_string(ZFS_PROP_SHARESMB, "sharesmb", "off", PROP_INHERIT, ZFS_TYPE_FILESYSTEM, - "on | off | sharemgr(1M) options", "SHARESMB"); + "on | off | sharemgr(8) options", "SHARESMB"); zprop_register_string(ZFS_PROP_MLSLABEL, "mlslabel", ZFS_MLSLABEL_DEFAULT, PROP_INHERIT, ZFS_TYPE_DATASET, "<sensitivity label>", "MLSLABEL"); |