diff options
author | Jeremy Allison <jra@samba.org> | 2009-03-18 21:49:32 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-03-18 21:49:32 -0700 |
commit | c5394cd7cfd5a234d9ece5bcdf0166652f69234e (patch) | |
tree | 5e172ac15a1d90b804e6d3d2c8e015a9d798a7d4 /source3/torture | |
parent | 28e03f2011b331ab01b99f9ff6e049f938ec1a00 (diff) | |
download | samba-c5394cd7cfd5a234d9ece5bcdf0166652f69234e.tar.gz samba-c5394cd7cfd5a234d9ece5bcdf0166652f69234e.tar.bz2 samba-c5394cd7cfd5a234d9ece5bcdf0166652f69234e.zip |
Modify simple POSIX open test to use filenames containing a ':'
character. Should stop regressions of bug #6196.
Jeremy.
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 19849a84a8..6029eb0727 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -4160,8 +4160,8 @@ static bool run_opentest(int dummy) static bool run_simple_posix_open_test(int dummy) { static struct cli_state *cli1; - const char *fname = "\\posix.file"; - const char *dname = "\\posix.dir"; + const char *fname = "\\posix:file"; + const char *dname = "\\posix:dir"; uint16 major, minor; uint32 caplow, caphigh; int fnum1 = -1; |