diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-23 16:43:41 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-23 16:46:17 +0100 |
commit | bebb17ad0e8a9508bf6b083c4f709001fc6998c5 (patch) | |
tree | 47fcfcd97f7eee3f39c1e0a8a55592c3e736553f | |
parent | 3a2488870f8f52e14948b50ec9b91de1c9a990b9 (diff) | |
download | samba-bebb17ad0e8a9508bf6b083c4f709001fc6998c5.tar.gz samba-bebb17ad0e8a9508bf6b083c4f709001fc6998c5.tar.xz samba-bebb17ad0e8a9508bf6b083c4f709001fc6998c5.zip |
s4:WINREG torture - fix an error (missing "break" in a "switch")
Sorry my fault - I didn't discover that earlier since we had binary data types
support activated in s4.
-rw-r--r-- | source4/torture/rpc/winreg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index da46c13ed02..8b57dd8cf75 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -1949,6 +1949,7 @@ static bool test_SetValue_simple(struct dcerpc_binding_handle *b, case REG_QWORD: blob = data_blob_talloc_zero(tctx, 8); SBVAL(blob.data, 0, value2); + break; case REG_BINARY: blob = data_blob_string_const("binary_blob"); break; |