Add missing newlines to debug statements
authorSteven Danneman <steven.danneman@isilon.com>
Wed, 25 Mar 2009 19:53:06 +0000 (12:53 -0700)
committerKarolin Seeger <kseeger@samba.org>
Wed, 15 Apr 2009 07:07:47 +0000 (09:07 +0200)
(cherry picked from commit 365b5cfcbeb041ce84718717f30ac02183c9af7f)
(cherry picked from commit 2ab9a15f4ae08155474222a857afd70bfdfc4a44)

source3/modules/onefs_open.c

index c5030f4ab85dddc067fe2d1ba3f616246e812ed9..b8d4cffbe095eda3dc441687a5856ca6d2a6c7c8 100644 (file)
@@ -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;