diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-25 06:23:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:04:40 -0500 |
commit | 7780bec7b4169cb2a78ceda16e6dc9e00dcb0b0f (patch) | |
tree | 7c688462f2882a876ee286c7d4f54313df85f925 /source4/torture/raw | |
parent | 6b2fc6e2d431261ea0877afa27a70ec15d504f37 (diff) | |
download | samba-7780bec7b4169cb2a78ceda16e6dc9e00dcb0b0f.tar.gz samba-7780bec7b4169cb2a78ceda16e6dc9e00dcb0b0f.tar.bz2 samba-7780bec7b4169cb2a78ceda16e6dc9e00dcb0b0f.zip |
r3198: check for too many .. components in filenames
pvfs now passes RAW-MKDIR
(This used to be commit 41adb385f123b8d4cd3fe2eb03d891b6bdcf2361)
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/mkdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/raw/mkdir.c b/source4/torture/raw/mkdir.c index bc2ddbb544..48c4853554 100644 --- a/source4/torture/raw/mkdir.c +++ b/source4/torture/raw/mkdir.c @@ -22,8 +22,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) |