Author: metze Date: 2006-07-10 10:34:34 +0000 (Mon, 10 Jul 2006) New Revision: 16912
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16912 Log: I messed up the numbers for ipc and print shares... This caused vista beta2 to not do any rpc calls against samba4 metze Modified: branches/SAMBA_4_0/source/smb_server/smb2/tcon.c Changeset: Modified: branches/SAMBA_4_0/source/smb_server/smb2/tcon.c =================================================================== --- branches/SAMBA_4_0/source/smb_server/smb2/tcon.c 2006-07-10 10:31:11 UTC (rev 16911) +++ branches/SAMBA_4_0/source/smb_server/smb2/tcon.c 2006-07-10 10:34:34 UTC (rev 16912) @@ -182,10 +182,10 @@ /* work out what sort of connection this is */ if (strcmp(lp_fstype(snum), "IPC") == 0) { type = NTVFS_IPC; - type_smb2 = 0x0003; + type_smb2 = 0x0002; } else if (lp_print_ok(snum)) { type = NTVFS_PRINT; - type_smb2 = 0x0002; + type_smb2 = 0x0003; } else { type = NTVFS_DISK; type_smb2 = 0x0001;