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/ffs_file_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'serverboot/ffs_file_io.c') diff --git a/serverboot/ffs_file_io.c b/serverboot/ffs_file_io.c index ce67fdc8..0055c302 100644 --- a/serverboot/ffs_file_io.c +++ b/serverboot/ffs_file_io.c @@ -625,7 +625,7 @@ ffs_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_flags & IC_FASTLINK) != 0) { -- cgit v1.2.3