1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

s4:registry/tests/diff.c - try to make also this test compatible with big-endian platforms

This commit is contained in:
Matthias Dieter Wallnöfer
2010-03-30 13:02:27 +02:00
parent b08bbbb42d
commit 01f1f87aa9

View File

@ -227,10 +227,11 @@ static bool diff_setup_tcase(struct torture_context *tctx, void **data)
error = r2_ctx->ops->create_key(r2_ctx, newkey, "Explorer", NULL, NULL, &newkey);
torture_assert_werr_ok(tctx, error, "Creating HKLM\\..\\Policies\\Explorer failed");
blob.data = (void *)talloc(r2_ctx, uint32_t);
SIVAL(blob.data, 0, 0x03ffffff);
blob.length = sizeof(uint32_t);
blob.data = talloc_array(r2_ctx, uint8_t, 4);
/* set "0x03FFFFFF" in little endian format */
blob.data[0] = 0xFF; blob.data[1] = 0xFF;
blob.data[2] = 0xFF; blob.data[3] = 0x03;
blob.length = 4;
r1_ctx->ops->set_value(newkey, "NoDrives", REG_DWORD, blob);