From 7d01f1036971ecb4151871be30f7b6f39316adf6 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 26 Feb 2013 09:39:17 +0100 Subject: s3:smbd: fix missing space in debug message in initial_break_processing() Signed-off-by: Michael Adam Reviewed-by: Jeremy Allison --- source3/smbd/oplock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/smbd/oplock.c') diff --git a/source3/smbd/oplock.c b/source3/smbd/oplock.c index f44711323f..1fc7c83e8e 100644 --- a/source3/smbd/oplock.c +++ b/source3/smbd/oplock.c @@ -290,7 +290,7 @@ static files_struct *initial_break_processing( /* The file could have been closed in the meantime - return success. */ if( DEBUGLVL( 3 ) ) { dbgtext( "initial_break_processing: cannot find open file with " ); - dbgtext( "file_id %s gen_id = %lu", file_id_string_tos(&id), file_id); + dbgtext( "file_id %s gen_id = %lu, ", file_id_string_tos(&id), file_id); dbgtext( "allowing break to succeed.\n" ); } return NULL; -- cgit