Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/nfs_handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1002,7 +1002,7 @@ pub async fn nfsproc3_readdir(
) -> Result<(), anyhow::Error> {
let mut args = READDIR3args::default();
args.deserialize(input)?;
debug!("nfsproc3_readdirplus({:?},{:?}) ", xid, args);
debug!("nfsproc3_readdir({:?},{:?}) ", xid, args);

let dirid = context.vfs.fh_to_id(&args.dir);
// fail if unable to convert file handle
Expand Down Expand Up @@ -1037,7 +1037,7 @@ pub async fn nfsproc3_readdir(
let mut ctr = 0;
match context
.vfs
.readdir_simple(dirid, estimated_max_results as usize)
.readdir(dirid, args.cookie, estimated_max_results as usize)
.await
{
Ok(result) => {
Expand Down