diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-03-21 11:38:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:59:01 -0500 |
commit | 582c039ab14d79501362761811197477752372a9 (patch) | |
tree | 0d7d976c60679ec04219c19f0129556fbc653390 /source4/ntvfs | |
parent | 2216af23c70ec8dee7162aaf35be5aed60a1a8ca (diff) | |
download | samba-582c039ab14d79501362761811197477752372a9.tar.gz samba-582c039ab14d79501362761811197477752372a9.tar.bz2 samba-582c039ab14d79501362761811197477752372a9.zip |
r14613: fixed ntvfs_notify_next()
(This used to be commit 9bf7d322d014d0d7dc603427b233acd97fae5734)
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/ntvfs_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/ntvfs_interface.c b/source4/ntvfs/ntvfs_interface.c index a47c965b2a..945eb232e2 100644 --- a/source4/ntvfs/ntvfs_interface.c +++ b/source4/ntvfs/ntvfs_interface.c @@ -623,7 +623,7 @@ _PUBLIC_ NTSTATUS ntvfs_next_notify(struct ntvfs_module_context *ntvfs, if (!ntvfs->next || !ntvfs->next->ops->notify) { return NT_STATUS_NOT_IMPLEMENTED; } - return ntvfs->next->ops->notify(ntvfs, req, info); + return ntvfs->next->ops->notify(ntvfs->next, req, info); } /* cancel - called to cancel an outstanding async request */ |