From 4b15f31f106f1dd69fdda721b5c3b787f5245a80 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 2 Aug 2007 08:53:24 +0000 Subject: r24120: add a file_id_create() hook into the VFS layer it's needed for some cluster filesystems to overload this function. metze (This used to be commit cdaa24e8047399002e4b287a31a8340a665e580f) --- source3/printing/printfsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/printing') diff --git a/source3/printing/printfsp.c b/source3/printing/printfsp.c index 821f46041d..ab628e29fc 100644 --- a/source3/printing/printfsp.c +++ b/source3/printing/printfsp.c @@ -86,7 +86,7 @@ NTSTATUS print_fsp_open(connection_struct *conn, const char *fname, fsp->wcp = NULL; SMB_VFS_FSTAT(fsp,fsp->fh->fd, &sbuf); fsp->mode = sbuf.st_mode; - fsp->file_id = file_id_sbuf(&sbuf); + fsp->file_id = vfs_file_id_from_sbuf(conn, &sbuf); conn->num_files_open++; -- cgit