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/ffs_file_io.c | |
parent | 4a508baa0c987ee3286a1cf3ee900ffb4d4fdaef (diff) | |
download | hurd-66df0517902ee905ae38354cb61d2ee8fcf5ce80.tar.gz hurd-66df0517902ee905ae38354cb61d2ee8fcf5ce80.tar.bz2 hurd-66df0517902ee905ae38354cb61d2ee8fcf5ce80.zip |
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/ffs_file_io.c')
-rw-r--r-- | serverboot/ffs_file_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |