Re: VFS problem

2002-06-02 Thread Juergen Hasch
Hi Jim, Am Sonntag, 2. Juni 2002 22:58 schrieb Jim Myers: > I was aware of that, but from the traces I took (with log level=10), > connect was sometimes NOT called! > I saw examples where after Samba was restarted and I tried to access a file > in the VFS share, the first call after vfs_init was

Re: VFS problem

2002-06-02 Thread Jim Myers
: samba-technical-admin@listSubject: Re: VFS problem s.samba.org

Re: VFS problem

2002-06-02 Thread Juergen Hasch
Hi Jim, Am Samstag, 1. Juni 2002 18:25 schrieb Jim Myers: > I'm trying to write a VFS module that uses the conn->vfs_private problem. > It appears this field is never referenced in existing Samba code and is NOT > initialized in vfs.c:vfs_init_custom. > > It appears to me that this function needs

Re: VFS problem

2002-06-02 Thread Alexander Bokovoy
On Sat, Jun 01, 2002 at 09:25:10AM -0700, Jim Myers wrote: > I'm trying to write a VFS module that uses the conn->vfs_private problem. > It appears this field is never referenced in existing Samba code and is NOT > initialized in vfs.c:vfs_init_custom. > > It appears to me that this function need

VFS problem

2002-06-01 Thread Jim Myers
I'm trying to write a VFS module that uses the conn->vfs_private problem. It appears this field is never referenced in existing Samba code and is NOT initialized in vfs.c:vfs_init_custom. It appears to me that this function needs the following line added: conn->vfs_private = NULL; However