diff options
author | Günther Deschner <gd@samba.org> | 2010-06-30 17:13:42 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-06-30 21:46:09 +0200 |
commit | 69610484872bb8c9d52cd1b12c56a3bf99be78ae (patch) | |
tree | 932ba94f84e3bb192d4b971cf6860e99ba26bcbf /source4 | |
parent | 17ddefef8a3dd299fd318a9e3908396beba62cbb (diff) | |
download | samba-69610484872bb8c9d52cd1b12c56a3bf99be78ae.tar.gz samba-69610484872bb8c9d52cd1b12c56a3bf99be78ae.tar.xz samba-69610484872bb8c9d52cd1b12c56a3bf99be78ae.zip |
s4-smbtorture: in extended setvalue winreg test, reduce max random buffer length to 16 bytes.
Guenther
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/winreg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 28783a0c9d8..92404d3da73 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -2279,7 +2279,7 @@ static bool test_SetValue_extended(struct dcerpc_binding_handle *b, torture_comment(tctx, "Testing SetValue (extended formats)\n"); for (t=0; t < ARRAY_SIZE(types); t++) { - for (l=0; l < 32; l++) { + for (l=0; l < 16; l++) { enum winreg_Type w_type; uint32_t w_size, w_length; |