]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:libsmb: Add missing parenthesis to logging message
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Mon, 7 Aug 2023 22:19:06 +0000 (10:19 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 8 Aug 2023 04:39:38 +0000 (04:39 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source3/libsmb/libsmb_path.c

index d53c772174c37de4d098fd1cee142dc71851caba..615de1c398bc482942849846af96ac0f76f98210 100644 (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://\n"));
+                DEBUG(1, ("Invalid path (does not begin with smb://)\n"));
                return -1;
        }