summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-07-05 05:53:08 +0000
committerAndrew Tridgell <tridge@samba.org>2001-07-05 05:53:08 +0000
commit832a91bbe643ba816407965863b8fa3bb5b8730c (patch)
treecc7168b8307441d869df87c33d2bb6285f3fbf65
parentf6f9e95dd9254c6aad19d4fa1ff891bfa33070b6 (diff)
downloadsamba-832a91bbe643ba816407965863b8fa3bb5b8730c.tar.gz
samba-832a91bbe643ba816407965863b8fa3bb5b8730c.tar.xz
samba-832a91bbe643ba816407965863b8fa3bb5b8730c.zip
fixed compilation of masktest on AIX
-rw-r--r--source/torture/masktest.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source/torture/masktest.c b/source/torture/masktest.c
index 0acdb0d95cc..88b518b43ed 100644
--- a/source/torture/masktest.c
+++ b/source/torture/masktest.c
@@ -253,7 +253,7 @@ struct cli_state *connect_one(char *share)
}
static char *resultp;
-static file_info *finfo;
+static file_info *f_info;
void listfn(file_info *f, const char *s, void *state)
{
@@ -264,7 +264,7 @@ void listfn(file_info *f, const char *s, void *state)
} else {
resultp[2] = '+';
}
- finfo = f;
+ f_info = f;
}
static void get_real_name(struct cli_state *cli,
@@ -277,10 +277,10 @@ static void get_real_name(struct cli_state *cli,
} else {
cli_list_new(cli, "\\masktest\\*", aHIDDEN | aDIR, listfn, NULL);
}
- if (finfo) {
- fstrcpy(short_name, finfo->short_name);
+ if (f_info) {
+ fstrcpy(short_name, f_info->short_name);
strlower(short_name);
- pstrcpy(long_name, finfo->name);
+ pstrcpy(long_name, f_info->name);
strlower(long_name);
}
@@ -317,9 +317,9 @@ static void testpair(struct cli_state *cli, char *mask, char *file)
resultp = res1;
fstrcpy(short_name, "");
- finfo = NULL;
+ f_info = NULL;
get_real_name(cli, long_name, short_name);
- finfo = NULL;
+ f_info = NULL;
fstrcpy(res1, "---");
cli_list(cli, mask, aHIDDEN | aDIR, listfn, NULL);