summaryrefslogtreecommitdiff
path: root/source3/modules/onefs_open.c
diff options
context:
space:
mode:
authorTim Prouty <tprouty@samba.org>2009-04-01 00:25:57 +0000
committerTim Prouty <tprouty@samba.org>2009-03-31 17:31:50 -0700
commit74246650613cca9ec57c9a0eff75c53a5c15b110 (patch)
tree587230cabefe097ea7be2e4f06eb04766f55ab17 /source3/modules/onefs_open.c
parentbfc7bb49ff0b842a1a372cee7d2affb49c2a0e54 (diff)
downloadsamba-74246650613cca9ec57c9a0eff75c53a5c15b110.tar.gz
samba-74246650613cca9ec57c9a0eff75c53a5c15b110.tar.bz2
samba-74246650613cca9ec57c9a0eff75c53a5c15b110.zip
s3 onefs: Add missing newlines to debug statements in the onefs module
Diffstat (limited to 'source3/modules/onefs_open.c')
-rw-r--r--source3/modules/onefs_open.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/modules/onefs_open.c b/source3/modules/onefs_open.c
index c23c176b79..d628443ef9 100644
--- a/source3/modules/onefs_open.c
+++ b/source3/modules/onefs_open.c
@@ -207,10 +207,11 @@ static NTSTATUS onefs_open_file(files_struct *fsp,
*/
if ((oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK) !=
NO_OPLOCK) {
- DEBUG(0,("Oplock(%d) being requested on a stream! "
- "Ignoring oplock request: base=%s, stream=%s\n",
- oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK,
- base, stream));
+ DEBUG(0, ("Oplock(%d) being requested on a stream! "
+ "Ignoring oplock request: base=%s, "
+ "stream=%s\n",
+ oplock_request & ~SAMBA_PRIVATE_OPLOCK_MASK,
+ base, stream));
/* Recover by requesting NO_OPLOCK instead. */
oplock_request &= SAMBA_PRIVATE_OPLOCK_MASK;
}