Convert memcpy(a,b,20) to hashcpy(a,b).
commit8da714939458fed99ff750ca09d4169fe68b034e
authorShawn Pearce <spearce@spearce.org>
Wed, 23 Aug 2006 06:49:00 +0000 (23 02:49 -0400)
committerJunio C Hamano <junkio@cox.net>
Wed, 23 Aug 2006 21:27:00 +0000 (23 14:27 -0700)
tree7bb75e00dfdd5a49880313e25b814e8e05d3a17d
parent2ad6ba353aa3815894674a0dee56aa75f8a5fc7b
Convert memcpy(a,b,20) to hashcpy(a,b).

This abstracts away the size of the hash values when copying them
from memory location to memory location, much as the introduction
of hashcmp abstracted away hash value comparsion.

A few call sites were using char* rather than unsigned char* so
I added the cast rather than open hashcpy to be void*.  This is a
reasonable tradeoff as most call sites already use unsigned char*
and the existing hashcmp is also declared to be unsigned char*.

[jc: this is a follow-up patch for merge-recursive.c which is
 not in "master" yet.  The original was sent-in for "next" so
 I splitted it out. ]

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
merge-recursive.c