svn commit: samba r4950 - in branches/SAMBA_4_0/source/libcli/composite: .

tridge at samba.org tridge at samba.org
Mon Jan 24 00:51:13 GMT 2005


Author: tridge
Date: 2005-01-24 00:51:06 +0000 (Mon, 24 Jan 2005)
New Revision: 4950

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

Log:
removed some excessive debugging messages

Modified:
   branches/SAMBA_4_0/source/libcli/composite/fetchfile.c


Changeset:
Modified: branches/SAMBA_4_0/source/libcli/composite/fetchfile.c
===================================================================
--- branches/SAMBA_4_0/source/libcli/composite/fetchfile.c	2005-01-23 23:23:26 UTC (rev 4949)
+++ branches/SAMBA_4_0/source/libcli/composite/fetchfile.c	2005-01-24 00:51:06 UTC (rev 4950)
@@ -49,8 +49,6 @@
 	status = smb_composite_connect_recv(state->req, c);
 	NT_STATUS_NOT_OK_RETURN(status);
 
-	printf("connect done\n");
-
 	state->loadfile = talloc(state, struct smb_composite_loadfile);
 	NT_STATUS_NOT_OK_RETURN(status);
 
@@ -66,8 +64,6 @@
 	state->stage = FETCHFILE_READ;
 	c->event_ctx = talloc_reference(c, state->req->event_ctx);
 
-	printf("load started\n");
-
 	return NT_STATUS_OK;
 }
 
@@ -78,13 +74,9 @@
 	struct fetchfile_state *state;
 	state = talloc_get_type(c->private, struct fetchfile_state);
 
-	printf("read event\n");
-
 	status = smb_composite_loadfile_recv(state->req, NULL);
 	NT_STATUS_NOT_OK_RETURN(status);
 
-	printf("read done\n");
-
 	io->out.data = state->loadfile->out.data;
 	io->out.size = state->loadfile->out.size;
 



More information about the samba-cvs mailing list