diff options
author | Michael Adam <obnox@samba.org> | 2013-02-26 09:39:17 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-02-28 02:15:39 +0100 |
commit | 7d01f1036971ecb4151871be30f7b6f39316adf6 (patch) | |
tree | daa2e656bb0368e667bd4a1f50e4add9373b3cb6 /source3/smbd | |
parent | 1da22ab994822acacf9a0378c68b15cd32535390 (diff) | |
download | samba-7d01f1036971ecb4151871be30f7b6f39316adf6.tar.gz samba-7d01f1036971ecb4151871be30f7b6f39316adf6.tar.bz2 samba-7d01f1036971ecb4151871be30f7b6f39316adf6.zip |
s3:smbd: fix missing space in debug message in initial_break_processing()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/oplock.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |