diff options
author | Roland McGrath <roland@gnu.org> | 1999-11-16 07:57:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-11-16 07:57:32 +0000 |
commit | 66df0517902ee905ae38354cb61d2ee8fcf5ce80 (patch) | |
tree | d62085342a812dd265dbac12747a8cec47d6fa4c /serverboot/ext2_file_io.c | |
parent | 4a508baa0c987ee3286a1cf3ee900ffb4d4fdaef (diff) |
1999-11-16 Roland McGrath <roland@baalperazim.frob.com>
* 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.
Diffstat (limited to 'serverboot/ext2_file_io.c')
-rw-r--r-- | serverboot/ext2_file_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |