From 728eebbfbb664d23e819286a7a338a9744fb5885 Mon Sep 17 00:00:00 2001 From: Joseph Sutton Date: Tue, 8 Aug 2023 10:19:06 +1200 Subject: [PATCH] s3:libsmb: Add missing parenthesis to logging message Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- source3/libsmb/libsmb_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/libsmb/libsmb_path.c b/source3/libsmb/libsmb_path.c index d53c772174c..615de1c398b 100644 --- a/source3/libsmb/libsmb_path.c +++ b/source3/libsmb/libsmb_path.c @@ -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://\n")); + DEBUG(1, ("Invalid path (does not begin with smb://)\n")); return -1; } -- 2.47.3