* cpio.c (cpio_read_crc_head): Undo change in the error message.

This commit is contained in:
Pavel Roskin 2002-07-15 16:16:26 +00:00
parent 735e7b5efa
commit 82009e2ab0
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2002-07-15 Pavel Roskin <proski@gnu.org>
* cpio.c (cpio_read_crc_head): Undo change in the error message.
* ftpfs.c: Replace bzero and bcopy with memset and memcpy.
* mcfs.c: Likewise.
* mcserv.c: Likewise.

View File

@ -358,7 +358,8 @@ static int cpio_read_crc_head(vfs *me, vfs_s_super *super)
&hd.c_nlink, &hd.c_mtime, &hd.c_filesize,
&hd.c_dev, &hd.c_devmin, &hd.c_rdev, &hd.c_rdevmin,
&hd.c_namesize, &hd.c_chksum) < 14) {
message_2s(1, MSG_ERROR, _("Corrupt cpio header encountered in\n%s"), super->name);
message_2s(1, MSG_ERROR, _("Corrupted cpio header encountered in\n%s"),
super->name);
return STATUS_FAIL;
}