From: Joseph Sutton Date: Mon, 7 Aug 2023 22:19:06 +0000 (+1200) Subject: s3:libsmb: Add missing parenthesis to logging message X-Git-Tag: tevent-0.16.0~1147 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=728eebbfbb664d23e819286a7a338a9744fb5885;p=thirdparty%2Fsamba.git s3:libsmb: Add missing parenthesis to logging message Signed-off-by: Joseph Sutton Reviewed-by: Andrew Bartlett --- 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; }