summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2016-08-25 17:10:09 +0200
committerJeremy Allison <jra@samba.org>2016-09-11 19:57:25 +0200
commit24b5a44c7d5b39ec97bf75dbf8115e28e46d6006 (patch)
treefad50f394c32ae21d207ca529e5f0f244f95e91f
parentbed0d84550f80b5cf1f8c5265802e3bd690151a6 (diff)
downloadsamba-24b5a44c7d5b39ec97bf75dbf8115e28e46d6006.tar.gz
s3-spoolss: add missing newline in debug message of _spoolss_OpenPrinterEx.
Guenther Signed-off-by: Guenther Deschner <gd@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
-rw-r--r--source3/rpc_server/spoolss/srv_spoolss_nt.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/rpc_server/spoolss/srv_spoolss_nt.c b/source3/rpc_server/spoolss/srv_spoolss_nt.c
index 5a8328c24bc..aa7e821a9e3 100644
--- a/source3/rpc_server/spoolss/srv_spoolss_nt.c
+++ b/source3/rpc_server/spoolss/srv_spoolss_nt.c
@@ -1819,9 +1819,8 @@ WERROR _spoolss_OpenPrinterEx(struct pipes_struct *p,
close_printer_handle(p, r->out.handle);
ZERO_STRUCTP(r->out.handle);
DEBUG(3,("access DENIED as user is not root, "
- "has no printoperator privilege, "
- "not a member of the printoperator builtin group and "
- "is not in printer admin list"));
+ "has no printoperator privilege and is "
+ "not a member of the printoperator builtin group\n"));
return WERR_ACCESS_DENIED;
}