From a6e20de8142b92c9cf1d4146b2dbc67039a73043 Mon Sep 17 00:00:00 2001 From: jweiss Date: Fri, 16 Sep 1994 22:09:04 +0000 Subject: [PATCH] strings.h -> string.h, the former doesn't exists on the sun now. bcopy -> memcpy; POSIX, etc --- update/ticket.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update/ticket.c b/update/ticket.c index 44ae0878..f07ed326 100644 --- a/update/ticket.c +++ b/update/ticket.c @@ -15,7 +15,7 @@ static char *rcsid_ticket_c = "$Header$"; #include #include #include -#include +#include #include #include #include @@ -69,7 +69,7 @@ get_mr_update_ticket(host, ticket) com_err(whoami, code, "in krb_mk_req"); } else { code = krb_get_cred(service, phost, realm, &cr); - bcopy(cr.session, session, sizeof(session)); + memcpy(session, cr.session, sizeof(session)); } return(code); } -- 2.45.1