From 7c4d9fa0e9f45ddf789fe6c90227d8a67273d9d9 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 27 Apr 2010 15:06:33 +0200 Subject: s4:ntvfs/ipc: remote // debug comments metze --- source4/ntvfs/ipc/vfs_ipc.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source4/ntvfs/ipc') 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; } -- cgit