summaryrefslogtreecommitdiffstats
path: root/crypto/kerberosIV/lib/krb/get_tf_fullname.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/kerberosIV/lib/krb/get_tf_fullname.c')
-rw-r--r--crypto/kerberosIV/lib/krb/get_tf_fullname.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/kerberosIV/lib/krb/get_tf_fullname.c b/crypto/kerberosIV/lib/krb/get_tf_fullname.c
index 7a103b6..75688b0 100644
--- a/crypto/kerberosIV/lib/krb/get_tf_fullname.c
+++ b/crypto/kerberosIV/lib/krb/get_tf_fullname.c
@@ -21,7 +21,7 @@ or implied warranty.
#include "krb_locl.h"
-RCSID("$Id: get_tf_fullname.c,v 1.7 1998/06/09 19:25:19 joda Exp $");
+RCSID("$Id: get_tf_fullname.c,v 1.8 1999/09/16 20:41:51 assar Exp $");
/*
* This file contains a routine to extract the fullname of a user
@@ -51,12 +51,12 @@ krb_get_tf_fullname(char *ticket_file, char *name, char *instance, char *realm)
return (tf_status);
if (name)
- strcpy_truncate (name, c.pname, ANAME_SZ);
+ strlcpy (name, c.pname, ANAME_SZ);
if (instance)
- strcpy_truncate (instance, c.pinst, INST_SZ);
+ strlcpy (instance, c.pinst, INST_SZ);
if ((tf_status = tf_get_cred(&c)) == KSUCCESS) {
if (realm)
- strcpy_truncate (realm, c.realm, REALM_SZ);
+ strlcpy (realm, c.realm, REALM_SZ);
}
else {
if (tf_status == EOF)
OpenPOWER on IntegriCloud