summaryrefslogtreecommitdiff
path: root/source/torture
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2004-04-06 14:24:13 +0000
committerJeremy Allison <jra@samba.org>2004-04-06 14:24:13 +0000
commitc673f4fe8baf19d5d3f38d73f893e89b65d9be5f (patch)
tree5a9dabfa7b539d7a42afb5818aa0da0eb6856008 /source/torture
parentf1f24caee4e6a13427a54b116e23a65928ff8251 (diff)
downloadsamba-c673f4fe8baf19d5d3f38d73f893e89b65d9be5f.tar.gz
r81: Make EA's case independent - fix smbtorture to test for this.
Jeremy.
Diffstat (limited to 'source/torture')
-rw-r--r--source/torture/torture.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/torture/torture.c b/source/torture/torture.c
index 17a2ee00a8d..161aa2cd73b 100644
--- a/source/torture/torture.c
+++ b/source/torture/torture.c
@@ -4378,11 +4378,11 @@ static BOOL run_eatest(int dummy)
}
/* Setting EA's to zero length deletes them. Test this */
- printf("Now deleting all EA's....\n");
+ printf("Now deleting all EA's - case indepenent....\n");
for (i = 0; i < 20; i++) {
fstring ea_name;
- slprintf(ea_name, sizeof(ea_name), "EA_%d", i);
+ slprintf(ea_name, sizeof(ea_name), "ea_%d", i);
if (!cli_set_ea_path(cli, fname, ea_name, "", 0)) {
printf("ea_set of name %s failed - %s\n", ea_name, cli_errstr(cli));
return False;