The branch, master has been updated
via 80d643f s3: Trim a debug to 80 chars
via b5ff6d8 s3: Fix a cut&paste error
from b142c6a s4:selftest: skip flakey samba4.drs.repl_schema.python for
now
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit 80d643f7e374c650ac827117654cd50ee7d84bfa
Author: Volker Lendecke <[email protected]>
Date: Sat Sep 17 23:43:19 2011 +0200
s3: Trim a debug to 80 chars
Autobuild-User: Volker Lendecke <[email protected]>
Autobuild-Date: Sun Sep 18 01:15:02 CEST 2011 on sn-devel-104
commit b5ff6d86e73cb879e7c4c62b8c032a97311eecdc
Author: Volker Lendecke <[email protected]>
Date: Sat Sep 17 23:42:23 2011 +0200
s3: Fix a cut&paste error
-----------------------------------------------------------------------
Summary of changes:
source3/smbd/trans2.c | 17 +++++++++++------
1 files changed, 11 insertions(+), 6 deletions(-)
Changeset truncated at 500 lines:
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index 8d34828..fbb4504 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -3598,12 +3598,17 @@ static void call_trans2setfsinfo(connection_struct
*conn,
sconn->smb1.unix_info.client_cap_low = IVAL(pdata,4);
sconn->smb1.unix_info.client_cap_high = IVAL(pdata,8);
/* Just print these values for now. */
- DEBUG(10,("call_trans2setfsinfo: set unix_info info.
major = %u, minor = %u \
-cap_low = 0x%x, cap_highn",
- (unsigned
int)sconn->smb1.unix_info.client_major,
- (unsigned
int)sconn->smb1.unix_info.client_minor,
- (unsigned
int)sconn->smb1.unix_info.client_cap_low,
- (unsigned
int)sconn->smb1.unix_info.client_cap_high));
+ DEBUG(10, ("call_trans2setfsinfo: set unix_info info. "
+ "major = %u, minor = %u cap_low = 0x%x, "
+ "cap_high = 0x%xn",
+ (unsigned int)sconn->
+ smb1.unix_info.client_major,
+ (unsigned int)sconn->
+ smb1.unix_info.client_minor,
+ (unsigned int)sconn->
+ smb1.unix_info.client_cap_low,
+ (unsigned int)sconn->
+ smb1.unix_info.client_cap_high));
/* Here is where we must switch to posix pathname
processing... */
if (sconn->smb1.unix_info.client_cap_low &
CIFS_UNIX_POSIX_PATHNAMES_CAP) {
--
Samba Shared Repository