diff options
author | Jeremy Allison <jra@samba.org> | 2009-05-04 15:50:35 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-05-04 15:50:35 -0700 |
commit | d34651f9d2fc5514bfbf3f74b66f1070bc09202a (patch) | |
tree | 89243e1636879c7db52eeb2a67acf11c059bf00a /source3/torture | |
parent | c49730e15bd6b9b1d59e4ef271f4512d5a07c8b3 (diff) | |
download | samba-d34651f9d2fc5514bfbf3f74b66f1070bc09202a.tar.gz samba-d34651f9d2fc5514bfbf3f74b66f1070bc09202a.tar.bz2 samba-d34651f9d2fc5514bfbf3f74b66f1070bc09202a.zip |
Fix the async calls for the posix_unlink and posix_rmdir.
Jeremy.
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/torture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 804cdf36bc..00e8266a22 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -4100,7 +4100,7 @@ static bool run_simple_posix_open_test(int dummy) /* Create a directory. */ if (cli_posix_mkdir(cli1, dname, 0777) == -1) { - printf("Server doesn't support setting UNIX CIFS extensions.\n"); + printf("POSIX mkdir of %s failed (%s)\n", dname, cli_errstr(cli1)); goto out; } |