1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-20 08:23:50 +03:00

s3:libsmb: Add missing newlines to logging messages

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton
2023-08-07 16:37:19 +12:00
committed by Andrew Bartlett
parent 956c7a2828
commit bba1613d55
4 changed files with 5 additions and 5 deletions

View File

@@ -262,7 +262,7 @@ SMBC_parse_path(TALLOC_CTX *ctx,
/* Watch the test below, we are testing to see if we should exit */
if (strncmp(p, "//", 2) && strncmp(p, "\\\\", 2)) {
DEBUG(1, ("Invalid path (does not begin with smb://"));
DEBUG(1, ("Invalid path (does not begin with smb://\n"));
return -1;
}
@@ -273,7 +273,7 @@ SMBC_parse_path(TALLOC_CTX *ctx,
/* There are options. Null terminate here and point to them */
*q++ = '\0';
DEBUG(4, ("Found options '%s'", q));
DEBUG(4, ("Found options '%s'\n", q));
/* Copy the options */
if (pp_options && *pp_options != NULL) {