nfs: fix bug
I have to mention that this bug is introduced by myself, in the last commit <fd07f30f511335f506ae6557e300093d4dde421e> to dfs_nfs.c
This commit is contained in:
parent
05e9233de6
commit
c07a78ae00
|
@ -233,7 +233,7 @@ static nfs_fh3 *get_dir_handle(struct nfs_filesystem *nfs, const char *name)
|
||||||
copy_handle(handle, &nfs->current_handle);
|
copy_handle(handle, &nfs->current_handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((file = strtok_r(RT_NULL, "/", &path)) != RT_NULL && path != RT_NULL)
|
while ((file = strtok_r(RT_NULL, "/", &path)) != RT_NULL && path[0] != 0)
|
||||||
{
|
{
|
||||||
LOOKUP3args args;
|
LOOKUP3args args;
|
||||||
LOOKUP3res res;
|
LOOKUP3res res;
|
||||||
|
|
Loading…
Reference in New Issue