Displaying 4 results from an estimated 4 matches for "debuglvl".
Did you mean:
debug_lvl
2007 May 16
1
SAMBA: Share specific log files
...uot;.log"));
safe_strcpy_fn
(__FILE__,__LINE__,sharename,lp_servicename(snum),
sizeof("/log/sharenet/")+sizeof(lp_servicename(snum)));
lp_set_logfile(logfilefullpath);
safe_strcpy_fn
(__FILE__,__LINE__,debugf,logfilefullpath,sizeof(logfilefullpath));
if( DEBUGLVL( IS_IPC(conn) ? 3 : 1 ) ) {
dbgtext( "%s (%s) ", get_remote_machine_name(),
conn->client_address );
dbgtext( "%s", srv_is_signing_active() ? "signed " : "");
dbgtext( "connect to service %s ", lp_servi...
2003 Sep 05
1
Problem with Win95 + DFS clients (fwd)
...i Sep 5 19:38:51 2003
@@ -45,6 +45,10 @@
Report a possible attack via the password buffer overflow bug.
****************************************************************************/
+/*iskantha Problem with win95 + DFS*/
+static int hack_fid;
+
+
static void overflow_attack(int len)
{
if( DEBUGLVL( 0 ) ) {
@@ -429,8 +433,26 @@
uint32 ioctl_code = (device << 16) + function;
int replysize, outsize;
char *p;
+ int temp = 0;
files_struct *fsp = file_fsp(inbuf,smb_vwv0);
- START_PROFILE(SMBioctl);
+ int fid = SVAL(inbuf,smb_vwv0);
+
+ DEBUG ( 4, ( " smbvwv0 before...
2005 Aug 05
3
one opinion about searching samba docs for answers
It sure is hard to find info in the documentation/mailing list for a
specific error. If an error log message was created by smbd, nmbd, or
winbind, shouldn't the documentation contain a description, cause, and
possible solution?
Specific case in point:
[2005/08/05 11:31:22, 0] nmbd/nmbd_browsesync.c:domain_master_node_status_fail(250)
domain_master_node_status_fail:
2003 Dec 01
0
No subject
...g/posix.c 26 Aug 2001 19:39:29 -0000 1.19.4.9
+++ locking/posix.c 5 Sep 2001 00:01:30 -0000
@@ -705,10 +705,10 @@
ret = conn->vfs_ops.lock(fsp,fsp->fd,op,offset,count,type);
- if (!ret && (errno == EFBIG)) {
+ if (!ret && ((errno == EFBIG) || (errno == ENOLCK))) {
if( DEBUGLVL( 0 )) {
dbgtext("posix_fcntl_lock: WARNING: lock request at
offset %.0f, length %.0f returned\n", (double)offset,(double)count);
- dbgtext("a 'file too large' error. This can happen
when using 64 bit lock offsets\n");
+ dbgtext("an %s error. This can happen...