Import ncpfs 0.18

This commit is contained in:
ncpfs archive import
2026-04-28 20:39:57 +02:00
parent 1fa124bd7c
commit d5ac4601b1
14 changed files with 141 additions and 27 deletions

View File

@@ -430,8 +430,8 @@ ncp_read_volume_list(struct ncp_server *server, int fpos, int cache_size)
info.volume_name,
&(entry->i)) != 0)
{
printk("ncpfs: could not lookup vol "
"%s\n", info.volume_name);
DPRINTK("ncpfs: could not lookup vol "
"%s\n", info.volume_name);
continue;
}
@@ -722,7 +722,8 @@ ncp_find_dir_inode(struct inode *dir, const char *name)
{
if ( (result->dir->finfo.i.DosDirNum == dir_info->DosDirNum)
&& (result->dir->finfo.i.volNumber == dir_info->volNumber)
&& (strcmp(result->finfo.i.entryName, name) == 0))
&& (strcmp(result->finfo.i.entryName, name) == 0)
&& (result != &(server->root)))
{
return result;
}