diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-01-24 00:51:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:09 -0500 |
commit | 46b5a3d7542b5e0960e6ef3ac9cbd7fcf142ac3f (patch) | |
tree | 92e7481b469ca4ea117b6ecd53cfa32390f7a644 /source4/libcli/composite/fetchfile.c | |
parent | 63ba8383e196bc41d18c7b9a8a80578eb9430188 (diff) | |
download | samba-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/fetchfile.c')
-rw-r--r-- | source4/libcli/composite/fetchfile.c | 8 |
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; |