diff options
author | Jeremy Allison <jra@samba.org> | 2004-04-06 14:24:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:51:07 -0500 |
commit | bd0407258598839cbda81e1c21a5c5d8320d232a (patch) | |
tree | bcf2b7223e40dbcd1f00d152b2a14886949ca9cd /source3/torture | |
parent | f01b3a157676ead4b8817e24740518b19b616474 (diff) | |
download | samba-bd0407258598839cbda81e1c21a5c5d8320d232a.tar.gz samba-bd0407258598839cbda81e1c21a5c5d8320d232a.tar.xz samba-bd0407258598839cbda81e1c21a5c5d8320d232a.zip |
r81: Make EA's case independent - fix smbtorture to test for this.
Jeremy.
(This used to be commit 0661357484a33329c75457527416667feaf57ef9)
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 17a2ee00a8d..161aa2cd73b 100644 --- a/source3/torture/torture.c +++ b/source3/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; |