summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-03-24 11:50:49 -0700
committerKarolin Seeger <kseeger@samba.org>2009-03-27 13:06:55 +0100
commitd0931439975696b1d4a1ca024c6aa549da29b222 (patch)
tree8dd98f0546c91bc1c608872ade4711e44c677f07
parent95ff7e45dbdd2a9853d7504e479055e1951053df (diff)
downloadsamba-d0931439975696b1d4a1ca024c6aa549da29b222.tar.gz
samba-d0931439975696b1d4a1ca024c6aa549da29b222.tar.xz
samba-d0931439975696b1d4a1ca024c6aa549da29b222.zip
s3:smbd: if we allow trans2 on the IPC$ share, then we have to allow transs2 too.
Otherwise we'll confuse the client signing engine, when we reply an error to each transs2. metze (cherry picked from commit e217138a36b1ba1eff164aecfa52ba6fe8864747)
-rw-r--r--source/smbd/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/process.c b/source/smbd/process.c
index 82d5cc916d0..ad01a52b39c 100644
--- a/source/smbd/process.c
+++ b/source/smbd/process.c
@@ -1033,7 +1033,7 @@ static const struct smb_message_struct {
/* 0x30 */ { NULL, NULL, 0 },
/* 0x31 */ { NULL, NULL, 0 },
/* 0x32 */ { "SMBtrans2",reply_trans2, AS_USER | CAN_IPC },
-/* 0x33 */ { "SMBtranss2",reply_transs2, AS_USER},
+/* 0x33 */ { "SMBtranss2",reply_transs2, AS_USER | CAN_IPC},
/* 0x34 */ { "SMBfindclose",reply_findclose,AS_USER},
/* 0x35 */ { "SMBfindnclose",reply_findnclose,AS_USER},
/* 0x36 */ { NULL, NULL, 0 },