mirror of https://github.com/MidnightCommander/mc
* cpio.c (cpio_read_crc_head): Undo change in the error message.
This commit is contained in:
parent
735e7b5efa
commit
82009e2ab0
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue