From: Mark Eichin Date: Wed, 15 Jun 1994 21:54:59 +0000 (+0000) Subject: step 3: bcopy->memcpy or memmove (chose by hand), twiddle args X-Git-Tag: krb5-1.0-beta4~42 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2d020eee999855dcf2549fc317902470de14ce9b;p=krb5.git step 3: bcopy->memcpy or memmove (chose by hand), twiddle args git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3813 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/appl/movemail/movemail.c b/src/appl/movemail/movemail.c index 61509c0fc..29dddf74b 100644 --- a/src/appl/movemail/movemail.c +++ b/src/appl/movemail/movemail.c @@ -535,7 +535,7 @@ char *host; } sin.sin_family = hp->h_addrtype; - bcopy(hp->h_addr, (char *)&sin.sin_addr, hp->h_length); + memcpy((char *)&sin.sin_addr, hp->h_addr, hp->h_length); sin.sin_port = sp->s_port; #ifdef KERBEROS s = socket(AF_INET, SOCK_STREAM, 0);