Add missing newlines to debug statements
authorSteven Danneman <steven.danneman@isilon.com>
Wed, 25 Mar 2009 19:53:06 +0000 (12:53 -0700)
committerSteven Danneman <steven.danneman@isilon.com>
Wed, 25 Mar 2009 19:53:06 +0000 (12:53 -0700)
source3/modules/onefs_open.c

index 5a488f894ce7097a4978f950a83c4dd663d8db96..c23c176b79a8336feec25611971fe04d92055cee 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;