diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-06 09:12:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:33 -0500 |
commit | a9158e0d47636e25ce374391cd9b02df3d27b390 (patch) | |
tree | 3724958af5445d10da788f83459b8a3f18b51a81 /source4/torture/raw | |
parent | 439c1524fba3b58abe9e353f9ff2bd7f103f3d12 (diff) | |
download | samba-a9158e0d47636e25ce374391cd9b02df3d27b390.tar.gz samba-a9158e0d47636e25ce374391cd9b02df3d27b390.tar.bz2 samba-a9158e0d47636e25ce374391cd9b02df3d27b390.zip |
r3574: the RAW-OPEN test changes broke a couple of the other tests. This
fixes most of them, although RAW-SEARCH still fails (due to an
interaction with the new xattr code)
(This used to be commit 09b4652b40c4cfca027765178bd5a0adbaa666c2)
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/mux.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/raw/mux.c b/source4/torture/raw/mux.c index 39eb5c1d5e..c0c04f7d46 100644 --- a/source4/torture/raw/mux.c +++ b/source4/torture/raw/mux.c @@ -25,8 +25,8 @@ #define CHECK_STATUS(status, correct) do { \ if (!NT_STATUS_EQUAL(status, correct)) { \ - printf("(%d) Incorrect status %s - should be %s\n", \ - __LINE__, nt_errstr(status), nt_errstr(correct)); \ + printf("(%s) Incorrect status %s - should be %s\n", \ + __location__, nt_errstr(status), nt_errstr(correct)); \ ret = False; \ goto done; \ }} while (0) @@ -319,7 +319,7 @@ BOOL torture_raw_mux(void) /* cleanup */ if (smbcli_deltree(cli->tree, BASEDIR) == -1) { - printf("Failed to cleanup " BASEDIR "\n"); + printf("(%s) Failed to cleanup " BASEDIR "\n", __location__); ret = False; goto done; } |