diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-04-27 15:06:33 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-04-27 15:11:09 +0200 |
commit | 7c4d9fa0e9f45ddf789fe6c90227d8a67273d9d9 (patch) | |
tree | 78dd7e38b90383e399c7632ec5c72b1efa91b876 /source4/ntvfs/ipc/vfs_ipc.c | |
parent | 1cd4f50079290e20bbe6be21d71ea654b6afb032 (diff) | |
download | samba-7c4d9fa0e9f45ddf789fe6c90227d8a67273d9d9.tar.gz samba-7c4d9fa0e9f45ddf789fe6c90227d8a67273d9d9.tar.xz samba-7c4d9fa0e9f45ddf789fe6c90227d8a67273d9d9.zip |
s4:ntvfs/ipc: remote // debug comments
metze
Diffstat (limited to 'source4/ntvfs/ipc/vfs_ipc.c')
-rw-r--r-- | source4/ntvfs/ipc/vfs_ipc.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source4/ntvfs/ipc/vfs_ipc.c b/source4/ntvfs/ipc/vfs_ipc.c index 2d40d1f484..8c9e8e91ce 100644 --- a/source4/ntvfs/ipc/vfs_ipc.c +++ b/source4/ntvfs/ipc/vfs_ipc.c @@ -504,7 +504,6 @@ static void ipc_readv_next_vector_init(struct ipc_readv_next_vector_state *s, s->buf = buf; s->len = MIN(len, UINT16_MAX); - //DEBUG(0,("readv_next_vector_init[%u 0x%04X]\n", s->len, s->len)); } static int ipc_readv_next_vector(struct tstream_context *stream, @@ -522,8 +521,6 @@ static int ipc_readv_next_vector(struct tstream_context *stream, if (state->ofs == state->len) { *_vector = NULL; *count = 0; -// DEBUG(0,("readv_next_vector done ofs[%u 0x%04X]\n", -// state->ofs, state->ofs)); return 0; } @@ -536,8 +533,6 @@ static int ipc_readv_next_vector(struct tstream_context *stream, /* return a short read */ *_vector = NULL; *count = 0; -// DEBUG(0,("readv_next_vector short read ofs[%u 0x%04X]\n", -// state->ofs, state->ofs)); return 0; } |