r5500: ntvfs modules that are the final backend needs to set the
authorStefan Metzmacher <metze@samba.org>
Tue, 22 Feb 2005 11:33:33 +0000 (11:33 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:10:51 +0000 (13:10 -0500)
dev and fs types

this prevents the main smbsrv code from crashing when someone does a
tree connect on a print share

metze

source/ntvfs/print/vfs_print.c

index c62357c949e6badb911dc3d57584425d3d3bbbad..c04cf76f332c7afa8df47beb5a7ed0da44eebac2 100644 (file)
 static NTSTATUS print_connect(struct ntvfs_module_context *ntvfs,
                              struct smbsrv_request *req, const char *sharename)
 {
+       struct smbsrv_tcon *tcon = req->tcon;
+
+       tcon->fs_type = talloc_strdup(tcon, "NTFS");
+       NT_STATUS_HAVE_NO_MEMORY(tcon->fs_type);
+
+       tcon->dev_type = talloc_strdup(tcon, "LPT1:");
+       NT_STATUS_HAVE_NO_MEMORY(tcon->dev_type);
+
        return NT_STATUS_OK;
 }