mirror of https://github.com/MidnightCommander/mc
* direntry.c (vfs_s_open): Be less restrictive when O_LINEAR is specified
and `linear_start' is not implemented.
This commit is contained in:
parent
5eca3eb99a
commit
da3b1863ab
|
@ -1,3 +1,9 @@
|
|||
2006-01-28 Pavel Tsekov <ptsekov@gmx.net>
|
||||
|
||||
* direntry.c (vfs_s_open): Be less restrictive when
|
||||
O_LINEAR is specified and `linear_start' is not
|
||||
implemented.
|
||||
|
||||
2006-01-27 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* mcserv.c: Made mcserv.c work on NetBSD 3.0/i386 with GNU
|
||||
|
|
|
@ -780,9 +780,6 @@ vfs_s_open (struct vfs_class *me, const char *file, int flags, int mode)
|
|||
if (MEDATA->linear_start) {
|
||||
print_vfs_message (_("Starting linear transfer..."));
|
||||
fh->linear = LS_LINEAR_PREOPEN;
|
||||
} else {
|
||||
g_free (fh);
|
||||
ERRNOR (ENOSYS, NULL);
|
||||
}
|
||||
} else if ((MEDATA->fh_open)
|
||||
&& (MEDATA->fh_open (me, fh, flags, mode))) {
|
||||
|
|
Loading…
Reference in New Issue