summaryrefslogtreecommitdiff
path: root/source4/torture/raw/chkpath.c
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-03-07 15:00:37 +0100
committerMichael Adam <obnox@samba.org>2008-03-07 15:00:37 +0100
commit97a272a4bf1178c1adcc5761d162b74c338dd230 (patch)
tree48893d7fb24b2ec544dbf02a91e8b9fdc0df78c4 /source4/torture/raw/chkpath.c
parentce4d94519fd056966e437255a837112f07ccebc2 (diff)
downloadsamba-97a272a4bf1178c1adcc5761d162b74c338dd230.tar.gz
samba-97a272a4bf1178c1adcc5761d162b74c338dd230.tar.bz2
samba-97a272a4bf1178c1adcc5761d162b74c338dd230.zip
torture: fix escape sequence in test_chkpath().
Michael (This used to be commit d92597d29caf76e1c8d0858f066d7a30143392e9)
Diffstat (limited to 'source4/torture/raw/chkpath.c')
-rw-r--r--source4/torture/raw/chkpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/raw/chkpath.c b/source4/torture/raw/chkpath.c
index fa69c92caa..7fd74e3cbe 100644
--- a/source4/torture/raw/chkpath.c
+++ b/source4/torture/raw/chkpath.c
@@ -150,7 +150,7 @@ static bool test_chkpath(struct smbcli_state *cli, struct torture_context *tctx)
ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\\\") + 1, BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\foo\\..") + 1, BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\f\\o\\o\\..\\..\\..") + 1, BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
- ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\foo\\\\\..\\\\") + 1, BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
+ ret &= test_path_ex(cli, tctx, ((char *)BASEDIR"\\foo\\\\..\\\\") + 1, BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, BASEDIR"\\", BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, BASEDIR"\\\\..\\"BASEDIR, BASEDIR, NT_STATUS_OK, NT_STATUS_OK);
ret &= test_path_ex(cli, tctx, BASEDIR"\\\\\\", BASEDIR, NT_STATUS_OK, NT_STATUS_OK);