diff options
author | Volker Lendecke <vl@samba.org> | 2011-09-17 23:43:19 +0200 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2011-09-18 01:15:02 +0200 |
commit | 80d643f7e374c650ac827117654cd50ee7d84bfa (patch) | |
tree | 6afa1e6600b1fd87886b02f65610103a4d8a4f9d | |
parent | b5ff6d86e73cb879e7c4c62b8c032a97311eecdc (diff) | |
download | samba-80d643f7e374c650ac827117654cd50ee7d84bfa.tar.gz samba-80d643f7e374c650ac827117654cd50ee7d84bfa.tar.bz2 samba-80d643f7e374c650ac827117654cd50ee7d84bfa.zip |
s3: Trim a debug to 80 chars
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sun Sep 18 01:15:02 CEST 2011 on sn-devel-104
-rw-r--r-- | source3/smbd/trans2.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 52d97b6691..fbb4504760 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_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)); + 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) { |