summaryrefslogtreecommitdiff
path: root/usr/src/lib/libnsl
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/lib/libnsl')
-rw-r--r--usr/src/lib/libnsl/nss/getipnodeby.c2
-rw-r--r--usr/src/lib/libnsl/rpc/auth_des.c6
2 files changed, 3 insertions, 5 deletions
diff --git a/usr/src/lib/libnsl/nss/getipnodeby.c b/usr/src/lib/libnsl/nss/getipnodeby.c
index a4e4515273..be485d1cb3 100644
--- a/usr/src/lib/libnsl/nss/getipnodeby.c
+++ b/usr/src/lib/libnsl/nss/getipnodeby.c
@@ -570,7 +570,7 @@ getipnodebyaddr(const void *src, size_t len, int type, int *error_num)
/*
* Step 2: AF_INET, v4 lookup. Since we're going to search the
* ipnodes (v6) path first, we need to treat this as a v4mapped
- * address. nscd(1m) caches v4 from ipnodes as mapped v6's. The
+ * address. nscd(8) caches v4 from ipnodes as mapped v6's. The
* switch backend knows to lookup v4's (not v4mapped) from the
* name services.
*/
diff --git a/usr/src/lib/libnsl/rpc/auth_des.c b/usr/src/lib/libnsl/rpc/auth_des.c
index 4bb4b929c8..dfa6777c96 100644
--- a/usr/src/lib/libnsl/rpc/auth_des.c
+++ b/usr/src/lib/libnsl/rpc/auth_des.c
@@ -32,8 +32,6 @@
* California.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/*
* auth_des.c, client-side implementation of DES authentication
*
@@ -185,7 +183,7 @@ authdes_pk_seccreate(const char *servername, netobj *pkey, uint_t window,
if (ckey == NULL) {
if (key_gendes(&auth->ah_key) < 0) {
syslog(LOG_ERR,
- "authdes_seccreate: keyserv(1m) is unable to generate session key");
+ "authdes_seccreate: keyserv(8) is unable to generate session key");
goto failed;
}
} else
@@ -423,7 +421,7 @@ authdes_refresh(AUTH *auth, void *dummy)
pkey.n_len = (uint_t)strlen((char *)ad->ad_pkey) + 1;
if (key_encryptsession_pk(ad->ad_servername, &pkey, &ad->ad_xkey) < 0) {
syslog(LOG_INFO,
- "authdes_refresh: keyserv(1m) is unable to encrypt session key");
+ "authdes_refresh: keyserv(8) is unable to encrypt session key");
return (FALSE);
}
cred->adc_fullname.key = ad->ad_xkey;