svn commit: samba r13110 - branches/SAMBA_3_0/source/locking branches/SAMBA_3_0_RELEASE/source/locking trunk/source/locking

jerry at samba.org jerry at samba.org
Tue Jan 24 17:27:31 GMT 2006


Author: jerry
Date: 2006-01-24 17:27:30 +0000 (Tue, 24 Jan 2006)
New Revision: 13110

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=13110

Log:
remove an invalid debug message about call get_share_mode_lock() with a NULL service path and fname (we do it all the time internally)
Modified:
   branches/SAMBA_3_0/source/locking/locking.c
   branches/SAMBA_3_0_RELEASE/source/locking/locking.c
   trunk/source/locking/locking.c


Changeset:
Modified: branches/SAMBA_3_0/source/locking/locking.c
===================================================================
--- branches/SAMBA_3_0/source/locking/locking.c	2006-01-24 16:58:48 UTC (rev 13109)
+++ branches/SAMBA_3_0/source/locking/locking.c	2006-01-24 17:27:30 UTC (rev 13110)
@@ -626,7 +626,6 @@
 	if (lck->fresh) {
 
 		if (fname == NULL || servicepath == NULL) {
-			DEBUG(0, ("New file, but no filename or servicepath supplied\n"));
 			talloc_free(lck);
 			return NULL;
 		}

Modified: branches/SAMBA_3_0_RELEASE/source/locking/locking.c
===================================================================
--- branches/SAMBA_3_0_RELEASE/source/locking/locking.c	2006-01-24 16:58:48 UTC (rev 13109)
+++ branches/SAMBA_3_0_RELEASE/source/locking/locking.c	2006-01-24 17:27:30 UTC (rev 13110)
@@ -626,7 +626,6 @@
 	if (lck->fresh) {
 
 		if (fname == NULL || servicepath == NULL) {
-			DEBUG(0, ("New file, but no filename or servicepath supplied\n"));
 			talloc_free(lck);
 			return NULL;
 		}

Modified: trunk/source/locking/locking.c
===================================================================
--- trunk/source/locking/locking.c	2006-01-24 16:58:48 UTC (rev 13109)
+++ trunk/source/locking/locking.c	2006-01-24 17:27:30 UTC (rev 13110)
@@ -626,7 +626,6 @@
 	if (lck->fresh) {
 
 		if (fname == NULL || servicepath == NULL) {
-			DEBUG(0, ("New file, but no filename or servicepath supplied\n"));
 			talloc_free(lck);
 			return NULL;
 		}



More information about the samba-cvs mailing list