diff options
author | Steven Danneman <steven.danneman@isilon.com> | 2009-03-25 12:53:06 -0700 |
---|---|---|
committer | Steven Danneman <steven.danneman@isilon.com> | 2009-03-25 12:53:06 -0700 |
commit | 365b5cfcbeb041ce84718717f30ac02183c9af7f (patch) | |
tree | adef7346dcc51d29dc55e9362d6f169e9a698e2d | |
parent | e3f7057b0942793543c215ab45176c4280bd7d51 (diff) | |
download | samba-365b5cfcbeb041ce84718717f30ac02183c9af7f.tar.gz samba-365b5cfcbeb041ce84718717f30ac02183c9af7f.tar.bz2 samba-365b5cfcbeb041ce84718717f30ac02183c9af7f.zip |
Add missing newlines to debug statements
-rw-r--r-- | source3/modules/onefs_open.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/onefs_open.c b/source3/modules/onefs_open.c index 5a488f894c..c23c176b79 100644 --- a/source3/modules/onefs_open.c +++ b/source3/modules/onefs_open.c @@ -208,14 +208,14 @@ 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", + "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; } - DEBUG(10,("Opening a stream: base=%s(%d), stream=%s", + DEBUG(10,("Opening a stream: base=%s(%d), stream=%s\n", base, fsp->base_fsp->fh->fd, stream)); base_fd = fsp->base_fsp->fh->fd; |