mirror of https://github.com/MidnightCommander/mc
* ftpfs.c (ftpfs_dir_load): Fix a bad ERRNOR call.
This commit is contained in:
parent
78535f6b60
commit
9d6d306127
|
@ -1,3 +1,7 @@
|
|||
2006-01-24 Pavel Tsekov <ptsekov@gmx.net>
|
||||
|
||||
* ftpfs.c (ftpfs_dir_load): Fix a bad ERRNOR call.
|
||||
|
||||
2006-01-23 Pavel Tsekov <ptsekov@gmx.net>
|
||||
|
||||
* ftpfs.c (ftpfs_first_cd_then_ls): Enable this functionality
|
||||
|
|
|
@ -1317,7 +1317,7 @@ ftpfs_dir_load (struct vfs_class *me, struct vfs_s_inode *dir, char *remote_path
|
|||
goto again;
|
||||
}
|
||||
print_vfs_message (_("ftpfs: failed; nowhere to fallback to"));
|
||||
ERRNOR (-1, EACCES);
|
||||
ERRNOR (EACCES, -1);
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
Loading…
Reference in New Issue