From 66df0517902ee905ae38354cb61d2ee8fcf5ce80 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 16 Nov 1999 07:57:32 +0000 Subject: 1999-11-16 Roland McGrath * ffs_file_io.c (ffs_open_file): Use memmove instead of ovbcopy. * ext2_file_io.c (ext2_open_file): Likewise. * strfcns.c (ovbcopy): Function removed. --- serverboot/ext2_file_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'serverboot/ext2_file_io.c') diff --git a/serverboot/ext2_file_io.c b/serverboot/ext2_file_io.c index d25fd9db..d96ad576 100644 --- a/serverboot/ext2_file_io.c +++ b/serverboot/ext2_file_io.c @@ -651,7 +651,7 @@ ext2_open_file(master_device_port, path, fp) if (++nlinks > MAXSYMLINKS) RETURN (FS_SYMLINK_LOOP); - ovbcopy(cp, &namebuf[link_len], len); + memmove(&namebuf[link_len], cp, len); #ifdef IC_FASTLINK if (fp->i_ic.i_blocks == 0) { -- cgit v1.2.3