summaryrefslogtreecommitdiff
path: root/source4/libcli/composite
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-01-24 00:51:06 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:09 -0500
commit46b5a3d7542b5e0960e6ef3ac9cbd7fcf142ac3f (patch)
tree92e7481b469ca4ea117b6ecd53cfa32390f7a644 /source4/libcli/composite
parent63ba8383e196bc41d18c7b9a8a80578eb9430188 (diff)
downloadsamba-46b5a3d7542b5e0960e6ef3ac9cbd7fcf142ac3f.tar.gz
samba-46b5a3d7542b5e0960e6ef3ac9cbd7fcf142ac3f.tar.bz2
samba-46b5a3d7542b5e0960e6ef3ac9cbd7fcf142ac3f.zip
r4950: removed some excessive debugging messages
(This used to be commit 4a351901aa49090700d89274559d6dda76f06b7d)
Diffstat (limited to 'source4/libcli/composite')
-rw-r--r--source4/libcli/composite/fetchfile.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source4/libcli/composite/fetchfile.c b/source4/libcli/composite/fetchfile.c
index f18657c452..24f4808f64 100644
--- a/source4/libcli/composite/fetchfile.c
+++ b/source4/libcli/composite/fetchfile.c
@@ -49,8 +49,6 @@ static NTSTATUS fetchfile_connect(struct smbcli_composite *c,
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 @@ static NTSTATUS fetchfile_connect(struct smbcli_composite *c,
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 @@ static NTSTATUS fetchfile_read(struct smbcli_composite *c,
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;