diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-04-16 17:11:21 +0200 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-04-16 17:11:21 +0200 |
commit | 4bbaf36f6fd85c9d07a16320ad58d7a6ad43fd6c (patch) | |
tree | 306ac3675c53006b72c3bfbb81a238a738f90630 /source4 | |
parent | b967afca648eea481e586f367f99464418cf8468 (diff) | |
download | samba-4bbaf36f6fd85c9d07a16320ad58d7a6ad43fd6c.tar.gz samba-4bbaf36f6fd85c9d07a16320ad58d7a6ad43fd6c.tar.bz2 samba-4bbaf36f6fd85c9d07a16320ad58d7a6ad43fd6c.zip |
fixed popt handling on 64bit boxes in gentest
(This used to be commit 40c93ffbe9eb09a5b3dc02ba56d28bf50df8ed82)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/gentest.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/torture/gentest.c b/source4/torture/gentest.c index d5fc855f17..6d872c687b 100644 --- a/source4/torture/gentest.c +++ b/source4/torture/gentest.c @@ -36,18 +36,18 @@ /* global options */ static struct gentest_options { - bool showall; - bool analyze; - bool analyze_always; - bool analyze_continuous; + int showall; + int analyze; + int analyze_always; + int analyze_continuous; uint_t max_open_handles; uint_t seed; uint_t numops; - bool use_oplocks; + int use_oplocks; char **ignore_patterns; const char *seeds_file; - bool use_preset_seeds; - bool fast_reconnect; + int use_preset_seeds; + int fast_reconnect; } options; /* mapping between open handles on the server and local handles */ |