summaryrefslogtreecommitdiffstats
path: root/crypto/kerberosIV/lib/roken/gethostname.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/kerberosIV/lib/roken/gethostname.c')
-rw-r--r--crypto/kerberosIV/lib/roken/gethostname.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/crypto/kerberosIV/lib/roken/gethostname.c b/crypto/kerberosIV/lib/roken/gethostname.c
index 9795fb3..753ba9f 100644
--- a/crypto/kerberosIV/lib/roken/gethostname.c
+++ b/crypto/kerberosIV/lib/roken/gethostname.c
@@ -14,12 +14,7 @@
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the Kungliga Tekniska
- * Högskolan and its contributors.
- *
- * 4. Neither the name of the Institute nor the names of its contributors
+ * 3. Neither the name of the Institute nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
@@ -65,11 +60,11 @@ gethostname(char *name, int namelen)
ret = uname (&utsname);
if (ret < 0)
return ret;
- strcpy_truncate (name, utsname.nodename, namelen);
+ strlcpy (name, utsname.nodename, namelen);
return 0;
}
#else
- strcpy_truncate (name, "some.random.host", namelen);
+ strlcpy (name, "some.random.host", namelen);
return 0;
#endif
}
OpenPOWER on IntegriCloud