summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/fs/smbsrv/smb_init.c
diff options
context:
space:
mode:
authorjose borrego <Jose.Borrego@Sun.COM>2008-08-17 15:05:05 -0600
committerjose borrego <Jose.Borrego@Sun.COM>2008-08-17 15:05:05 -0600
commitc8ec8eea9849cac239663c46be8a7f5d2ba7ca00 (patch)
treede2369debc4bc02d6f85d7ba66c90b369d32c8f7 /usr/src/uts/common/fs/smbsrv/smb_init.c
parent882a7af5ebaf4ff499b73f69bef1ae833f507418 (diff)
downloadillumos-joyent-c8ec8eea9849cac239663c46be8a7f5d2ba7ca00.tar.gz
6584155 Confusing 'No such object' message is logged when a share is successfully published.
6591393 Unable to join domain when primary W2K3 DC is offline 6600712 Need to know which domain controller is being used 6613364 smb_fsd.c and smb_vfs.c should be merged 6614925 Same share publishing request has somehow been added to the publish queue twice. 6631295 MS word read only file will get deleted if attempting to overwrite it. 6643263 set attributes atomically with create in smb_open_subr() 6691539 Doesn't recognize pre-created computer account in OU other than the default Computers container 6692877 Fails to delete a readonly file on win98 with "Access is denied." error 6705276 server signing does not work in domain mode with ntlmv1 6705849 SMB server-side signing : Unsigned share request successful when signing required 6708014 The state of smbstat should be displayed in non-numerical format 6709693 Look and feel at the confirmation prompt when switching to a different domain 6716855 Unable to create user roaming profile on CIFS share. 6716931 false lock conflicts when a volume mounted with nbmand option 6723650 ACL handling code needs update due to 6699852 6727937 smb/server enters maintenance state with no active non-loopback interfaces 6728049 Incorrect timezone offset in negotiate response and incorrect timestamp in directory search 6728068 Problem mapping autohome shares due to lack of permission 6729725 Incorrect filenames returned by TRANS2_FIND and TRANS2_QUERY_PATH_INFO 6731101 Should not need to restart smb/server after switching the security mode 6730764 Syslog displays error "failed to lookup (near "(": syntax error)" when adding local group to ACL 6731874 smb_delete returns wrong NT_STATUS_XXX codes for invalid paths 6731877 smbtorture RAW-SEARCH fails for smb_search/find/find_unique 6732277 Misleading error message when failed to delete a folder 6735529 Incorrect timestamp values - SMB_TRANS2_SET_INFORMATION --HG-- rename : usr/src/uts/common/fs/smbsrv/smb_lock_svc.c => usr/src/uts/common/fs/smbsrv/smb_lock.c
Diffstat (limited to 'usr/src/uts/common/fs/smbsrv/smb_init.c')
-rw-r--r--usr/src/uts/common/fs/smbsrv/smb_init.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/src/uts/common/fs/smbsrv/smb_init.c b/usr/src/uts/common/fs/smbsrv/smb_init.c
index dda99a8ee0..c57362868f 100644
--- a/usr/src/uts/common/fs/smbsrv/smb_init.c
+++ b/usr/src/uts/common/fs/smbsrv/smb_init.c
@@ -23,7 +23,7 @@
* Use is subject to license terms.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
+#pragma ident "@(#)smb_init.c 1.4 08/07/08 SMI"
#include <sys/types.h>
#include <sys/ddi.h>
@@ -65,6 +65,7 @@ clock_t smb_oplock_timeout = OPLOCK_STD_TIMEOUT;
int smb_flush_required = 1;
int smb_dirsymlink_enable = 1;
int smb_announce_quota = 0;
+int smb_sign_debug = 0;
/*
* *****************************************************************************
@@ -109,7 +110,7 @@ static struct dev_ops devops = {
static struct modldrv modldrv = {
&mod_driverops, /* drv_modops */
- "CIFS Server Protocol %I%", /* drv_linkinfo */
+ "CIFS Server Protocol 1.4", /* drv_linkinfo */
&devops,
};