1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00
Commit Graph

873 Commits

Author SHA1 Message Date
Andrew Tridgell
ef4dbc443d r4710: added a smb_composite_savefile() function, and expanded the test suite a little 2007-10-10 13:08:46 -05:00
Andrew Bartlett
cd9e795e40 r4708: Comparing with LDAP, it is clear that these 'flags' are in fact the
POSIX offset for the trusted domain.

Andrew Bartlett
2007-10-10 13:08:46 -05:00
Stefan Metzmacher
d896ac603a r4707: w2k3 don't restict passwords on
netr_ServerPasswordSet and netr_ServerPasswordSet2

so we do now

I also add a torture test for this

metze
2007-10-10 13:08:46 -05:00
Andrew Bartlett
8f47c7b02c r4706: Fix the build, after I renamed these elements in the IDL.
Andrew Bartlett
2007-10-10 13:08:45 -05:00
Andrew Bartlett
51e94fa26c r4703: Add support for EnumTrustDomain, and expand the testsuite.
Add my copyright to the SAMR server.

Andrew Bartlett
2007-10-10 13:08:45 -05:00
Stefan Metzmacher
7d8ba92da2 r4702: implment idl, torture test and server code for netr_ServerPasswordSet2()
metze
2007-10-10 13:08:45 -05:00
Andrew Tridgell
516f68fb05 r4700: first attempt at a composite async function, smb_composite_loadfile(),
which combineds ntcreatex, readx and close into a single call that
behaves just like a normal libcli async call.
2007-10-10 13:08:45 -05:00
Andrew Bartlett
c19f1850ee r4699: Move the test_EnumTrustDom() test into the test_CreateTrustedDomain
test.  This way, it must have at least one domain to enumerate.

Andrew Bartlett
2007-10-10 13:08:44 -05:00
Andrew Bartlett
271c8faadf r4698: - Initial implementation of trusted domains in LSA.
- Use templates for Secrets and the new trusted domains

 - Auto-add modifiedTime, createdTime and objectGUID to records in the
   samdb layer.

Andrew Bartlett
2007-10-10 13:08:44 -05:00
Andrew Bartlett
6a09a84320 r4694: 'fix' the behaviour for setting only the old, but not the new secret.
(The behaviour is a little odd, but we wanted bug-for-bug, right? :-)

Andrew Bartlett
2007-10-10 13:08:44 -05:00
Stefan Metzmacher
f0a0dbeb25 r4690: - add support for async rpc server replies
the backend should check for
(dce_call->state_flags & DCESRV_CALL_STATE_FLAG_MAY_ASYNC)
then it's allowed to reply async

then the backend should mark that call as async with
dce_call->state_flags |= DCESRV_CALL_STATE_FLAG_ASYNC;

later it has to manualy set r->out.result
and then send the reply by calling

status = dcesrv_reply(p->dce_call);

NOTE: that ncacn_np doesn't support async replies yet

- implement an async version of echo_TestSleep

- reenable the echo_TestSleep torture test
  (this need to be more strict when we have support for async ncacn_np)

metze
2007-10-10 13:08:43 -05:00
Stefan Metzmacher
b020dbec89 r4683: fix the build
metze
2007-10-10 13:08:42 -05:00
Andrew Bartlett
ded3303352 r4682: A LDB-based secrets implementation in Samba4.
This uses LDB (a local secrets.ldb and the global samdb) to fill out
the secrets from an LSA perspective.

Some small changes to come, but the bulk of the work is now done.

A re-provision is required after this change.

Andrew Bartlett
2007-10-10 13:08:42 -05:00
Andrew Bartlett
8807498f6d r4675: Prevent global warming, and save tridge's sainity by short-cutting the
testsuite for all the different flag types.  (We really only need to
know if we are getting the session key crypto stuff right, and one
call can tell us that).

Andrew Bartlett
2007-10-10 13:08:41 -05:00
Andrew Bartlett
5853af89c8 r4674: Test SetSecret behaviour for local and global secrets, when setting
only the OLD secret value.

Andrew Bartlett
2007-10-10 13:08:41 -05:00
Andrew Bartlett
1fed79cb0f r4673: Fix the IDL for the QuerySecret LSA call.
This call uses a new IDL type, NTTIME_hyper.  This is 8-byte aligned,
as the name suggests.

Expand the QuerySecret LSA calls in RPC-SAMLOGON and RPC-LSA, to
validate the behaviour of times, and of the old secrets.

Thanks to tridge for spotting the use of HYPER!

Andrew Bartlett
2007-10-10 13:08:40 -05:00
Andrew Bartlett
357d9114f0 r4671: Expand the RPC-LSA test to set secret values twice.
Andrew Bartlett
2007-10-10 13:08:40 -05:00
Andrew Bartlett
a17a8fbf9a r4660: Test what we should return for a secret that does not exist.
Andrew Bartlett
2007-10-10 13:08:39 -05:00
Andrew Bartlett
43e3516fc0 r4635: Fix NTLMSSP to return NT_STATUS_OK when it has constructed the auth
token in the client (the final token in the negotiation).

Consequential fixes in the SPNEGO code, which now uses the out.length
as the indicator of 'I need to send something to the other side'.

Merge the NTLM and SPNEGO DCE-RPC authentication routines in the client.

Fix the RPC-MULTIBIND test consequent to this merge.

Andrew Bartlett
2007-10-10 13:08:37 -05:00
Andrew Tridgell
ba6caa99a4 r4631: don't consider an epmapper insert as a failure for the moment 2007-10-10 13:08:36 -05:00
Andrew Tridgell
5f10a8f8d0 r4625: added a test that demonstrates that once a context_id is established,
it can't be changed (so you have to create a new context_id, not
change the interface bound to an existing one)
2007-10-10 13:08:35 -05:00
Jelmer Vernooij
1f8f4dd179 r4624: Several crash fixes for DCOM
More work on the example class implementation
2007-10-10 13:08:35 -05:00
Jelmer Vernooij
b1ff606670 r4621: Add torture tests for epm_Insert and epm_Delete 2007-10-10 13:08:35 -05:00
Andrew Tridgell
dd1c54add8 r4618: - tidied up the alter_context client code a bit
- there is no alter_nak or alter_ack packet, its all done in an
  alter_response

- auto-allocated the contex_ids

- tried to fix up the dcom code to work again with
  alter_context. Jelmer, please take a look :)
2007-10-10 13:08:34 -05:00
Andrew Tridgell
0129ec947a r4617: basic alter_context requests now work in our client library. The test
just does a simple LSA/DSSETUP combo, which is what w2k does in the
ACL editor rpc calls that triggered this work
2007-10-10 13:08:34 -05:00
Andrew Tridgell
4004c69937 r4616: the first phase in the addition of proper support for
dcerpc_alter_context and multiple context_ids in the dcerpc client
library.

This stage does the following:

 - split "struct dcerpc_pipe" into two parts, the main part being "struct dcerpc_connection", which
   contains all the parts not dependent on the context, and "struct dcerpc_pipe" which has
   the context dependent part. This is similar to the layering in libcli_*() for SMB

 - disable the current dcerpc_alter code. I've used a #warning until i
   get the 2nd phase finished. I don't know how portable #warning is, but
   it won't be long before I add full alter context support anyway, so it won't last long

 - cleanup the allocation of dcerpc_pipe structures. The previous code
   was quite awkward.
2007-10-10 13:08:34 -05:00
Andrew Bartlett
ddb54d4ea1 r4614: Fix RPC-SAMLOGON, to use the workstation context (forgot to globally replace).
Andrew Bartlett
2007-10-10 13:08:33 -05:00
Andrew Tridgell
24ec8c4274 r4612: make the output for the w2k3 acl bug a bit clearer 2007-10-10 13:08:33 -05:00
Andrew Bartlett
a093c4f98e r4610: You can't join as a BDC and test against trusted domains. This test
only needs WS privilages anyway.

Andrew Bartlett
2007-10-10 13:08:33 -05:00
Andrew Bartlett
96806136ea r4603: Test creating local and global secrets over LSA.
Andrew Bartlett
2007-10-10 13:08:32 -05:00
Volker Lendecke
edb918762e r4597: Recently I've come across a case where I suspect the GetAnyDCName request to
kill the domain controller I'm asking. In samba4 torturing the DC is just so
easy, commit the test to randomized ask for DCs for all trusted domains.

Volker
2007-10-10 13:08:31 -05:00
Andrew Tridgell
ebe6b00284 r4596: added a dynamic inheritance ACLs test. As far as I can tell w2k3 does not do
dynamic inheritance
2007-10-10 13:08:31 -05:00
Andrew Tridgell
6e7754abd0 r4591: - converted the other _p talloc functions to not need _p
- added #if TALLOC_DEPRECATED around the _p functions

- fixes the code that broke from the above

while doing this I fixed quite a number of places that were
incorrectly using the non type-safe talloc functions to use the type
safe ones. Some were even doing multiplies for array allocation, which
is potentially unsafe.
2007-10-10 13:08:30 -05:00
Andrew Bartlett
7bb00a80ac r4590: Make RPC-SAMSYNC pass againt Win2k3.
Andrew Bartlett
2007-10-10 13:08:30 -05:00
Andrew Tridgell
429d79815c r4585: don't consider LookupSids3 failing with NT_STATUS_ACCESS_DENIED (as w2k3 does) or
NT_STATUS_RPC_PROTSEQ_NOT_SUPPORTED (as longhorn does) to be an error.

fixed the CreateTrustedDomain test to cope with the "torturedomain" being left over
from a previous aborted run
2007-10-10 13:08:29 -05:00
Andrew Tridgell
f893ad9c45 r4583: print which bit failed in the owner bits check 2007-10-10 13:08:29 -05:00
Andrew Tridgell
4f9fd767db r4582: finally worked out what is going on with the inherited ACLs test and win2003. It is a
win2003 bug!

This new test code works against w2k, and against longhorn, but fails
against w2k3. When tested against w2k3 it allows a open with an access
mask that should be denied by the given ACL, after setting up the ACL
using inheritance. Note that only the very specific
SEC_RIGHTS_FILE_ALL mask incorrectly succeeds, so they must have a
special case for that mask. Maybe its an optimisation gone wrong?

I don't know if there are any serious security implications to this,
but it is pretty clearly wrong, and has been fixed in longhorn.
2007-10-10 13:08:29 -05:00
Andrew Bartlett
518ca9fb69 r4566: Fix Samba4 to pass it's own RPC-SAMLOGON torture test.
Include RPC-SAMLOGON in the list of tests expected to pass

Remove silly extra loops from the RPC-SAMLOGON test, which mostly just
slowed htings down.

Andrew Bartlett
2007-10-10 13:08:28 -05:00
Andrew Tridgell
f7d4d3db48 r4560: - fixed crash bugs in the RPC-SCHANNEL and RPC-NETLOGON tests
- disabled the async netlogon tests for now until we better understand async rpc

- added a test_w2k3.sh script that runs rpc tests that a w2k3 DC
  should pass. This is useful for regression testing when PIDL changes
  are made.
2007-10-10 13:08:27 -05:00
Andrew Tridgell
fa3cecddd8 r4559: prevent the RPC-EPMAPPER test from looping forever against w2k3 2007-10-10 13:08:27 -05:00
Andrew Tridgell
89b74b5354 r4549: got rid of a lot more uses of plain talloc(), instead using
talloc_size() or talloc_array_p() where appropriate.

also fixed a memory leak in pvfs_copy_file() (failed to free a memory
context)
2007-10-10 13:08:25 -05:00
Andrew Tridgell
e6c81d7c9f r4547: - added talloc_new(ctx) macro that is a neater form of the common talloc(ctx, 0) call.
- cleaned up some talloc usage in various files

I'd like to get to the point that we have no calls to talloc(), at
which point we will rename talloc_p() to talloc(), to encourage
everyone to use the typesafe functions.
2007-10-10 13:08:20 -05:00
Stefan Metzmacher
bd06a85cb7 r4532: - rename bitmap -> bits
the next commit is support for typedef bitmap {...}; in pidl

metze
2007-10-10 13:08:19 -05:00
Andrew Tridgell
f9e0aa1ab1 r4520: added a enum test function to the echo pipe 2007-10-10 13:08:17 -05:00
Andrew Bartlett
93b46ebe0f r4510: Some more tests for RPC-NETLOGON, checking the idea that we could
combine the NTLM and LMv2 responses, for maximum compatability from a
client perspective, allowing access to servers that require NTLMv2, as
well as those that don't support it.

Currently, this is unfortunetly not possible against Win2k3 (and Samba
is being coded to match that behaviour at this point).

Andrew Bartlett
2007-10-10 13:08:17 -05:00
Andrew Bartlett
4b52409e38 r4499: Almost make our Samba4 server pass the RPC-SAMLOGON torture test.
I just need to fix a couple of NTLMv2 issues before we can fully pass,
and put this in test_rpc.sh, as a 'should pass' test.

Andrew Bartlett
2007-10-10 13:08:15 -05:00
Andrew Tridgell
f830adc54a r4492: r.in.info is a pointer that needs to be allocated before use 2007-10-10 13:08:12 -05:00
Andrew Tridgell
77e14c2858 r4491: don't dereference q1.out.sam unless we know it is not NULL 2007-10-10 13:08:12 -05:00
Stefan Metzmacher
e6d1136497 r4483: - rename same structs, enums and uninons of the dssetup pipe
to match the style we are using in other pipes

- first fillin local vars and only set the out parameter on success

- for the server code only to the samdb lookup when it's needed

NOTE: the DsRoleGetPrimaryDomainInformation() code with DS_ROLE_MEMBER_SERVER
      is not tested yet, does someone has a w2k3 member server to test with?

metze
2007-10-10 13:08:11 -05:00
Andrew Tridgell
1a4713bfd0 r4475: fixed smbd to work with the small changes in the ldb API (the most important
change was in the ldb_msg_add_*() routines, which now use the msg as a context,
and thus it needs to be a talloc ptr)
2007-10-10 13:07:55 -05:00
Andrew Tridgell
98b5f73c1b r4473: - moved talloc into its own lib/talloc/ area
- added gcov flags to Makefile.talloc

- expanded talloc testsuite to add a test for realloc with a child ptr

- fixed a bug in talloc_realloc() with realloc of a ptr that has child ptrs
2007-10-10 13:07:55 -05:00
Andrew Tridgell
09e98c8745 r4466: rather than defining "STANDALONE" for building tdb, ldb and talloc
outside the tree, instead defined _SAMBA_BUILD_ inside the Samba
build. This makes it easier to pull code out of Samba for external
use.
2007-10-10 13:07:54 -05:00
Andrew Tridgell
5448c72ebe r4463: added testing of the special SID_CREATOR_OWNER inheritance rules 2007-10-10 13:07:53 -05:00
Andrew Tridgell
6566dc2805 r4461: finished the remaining information levels in the DSSETUP pipe. The pipe is now complete!
The only glitch is that I am returning DS_ROLE_MEMBER_SERVER when I
should be returning DS_ROLE_PRIMARY_DC. This is needed for the moment
or ACL editing doesn't work from w2k3. Once we have some more ADS
calls we should be able to fix this.
2007-10-10 13:07:53 -05:00
Andrew Bartlett
9923c3bc1b r4459: GENSEC refinements:
In developing a GSSAPI plugin for GENSEC, it became clear that the API
needed to change:
 - GSSAPI exposes only a wrap() and unwrap() interface, and determines
   the location of the signature itself.
 - The 'have feature' API did not correctly function in the recursive
   SPNEGO environment.

As such, NTLMSSP has been updated to support these methods.

The LDAP client and server have been updated to use the new wrap() and
unwrap() methods, and now pass the LDAP-* tests in our smbtorture.
(Unfortunely I still get valgrind warnings, in the code that was
previously unreachable).

Andrew Bartlett
2007-10-10 13:07:53 -05:00
Jelmer Vernooij
dbcaff7c71 r4457: Fix IDL + add torture test for InqObject 2007-10-10 13:07:52 -05:00
Andrew Tridgell
7aec3dac6f r4451: added initial RPC-DSSETUP torture test. It works for level1 of
ds_RolerGetPrimaryDomainInformation()
2007-10-10 13:07:52 -05:00
Andrew Tridgell
382231ca36 r4445: put the unlink test in a subdirectory, and ensure it cleans up 2007-10-10 13:07:51 -05:00
Andrew Tridgell
d37f556258 r4443: test lsa_LookupNames3() even when lsa_LookupSids3() fails 2007-10-10 13:07:50 -05:00
Andrew Tridgell
c759fa0000 r4437: added IDL and test code for lsa_LookupSids3() and lsa_LookupNames3().
For some reason I am getting ACCESS_DENIED from w2k3 on
lsa_LookupSids3(). I will investigate.
2007-10-10 13:07:50 -05:00
Stefan Metzmacher
96000a2261 r4434: - fix some NetShare* idl functions
- add torture test for NetShareCheck()

metze
2007-10-10 13:07:49 -05:00
Andrew Tridgell
a44fa5319d r4430: - fixed the BASE-LOCK* tests to use a subdirectory, and properly setup the directory before each test,
thus avoiding errors due to previous failures
2007-10-10 13:07:48 -05:00
Stefan Metzmacher
19482a2245 r4422: make lp_set_cmdline("torture:dangerous", "Yes") a bool parameter
metze
2007-10-10 13:07:47 -05:00
Andrew Tridgell
b239589b00 r4407: stricter checking of parameters on hard link creation in the RAW-RENAME test 2007-10-10 13:07:44 -05:00
Andrew Tridgell
09ac133820 r4402: use __location__ instead of __LINE__ in the RAW-RENAME test 2007-10-10 13:07:43 -05:00
Andrew Tridgell
1bb7691963 r4401: stricter test for correct ACL inheritance in RAW-ACLS 2007-10-10 13:07:43 -05:00
Volker Lendecke
b0b9332519 r4392: Fix samr_GetAliasMembership idl 2007-10-10 13:07:42 -05:00
Andrew Tridgell
e30b8d5783 r4389: added checking for the default inherited ACL, which is used when no ACEs
are inheritable
2007-10-10 13:07:41 -05:00
Andrew Tridgell
fdb38c8e4b r4388: - allow ACE flags to be specified in security_descriptor_create()
- added a test for all combinations of the inheritance ACE flags and how
  they are propogated to child directories and files
2007-10-10 13:07:41 -05:00
Volker Lendecke
d70e237190 r4375: Implement samr_OpenAlias, samr_QueryAliasInfo and samr_SetAliasInfo. Fix IDL
for samr_SetAliasInfo.

Volker
2007-10-10 13:07:39 -05:00
Andrew Tridgell
b3b8958a18 r4364: - added support for testing of chained SMB operations in smbtorture
- added test for chained OpenX/ReadX, simulating the OS/2 workplace shell

- fixed a bug in handling chained fnum in openx and ntcreatex in the server

(yes, I'm on holiday, but this bug was annoying me ....)
2007-10-10 13:07:38 -05:00
Stefan Metzmacher
f8ea82cbd1 r4322: use a nicer name
metze
2007-10-10 13:07:34 -05:00
Andrew Tridgell
10861b3fa0 r4317: check the count of replies in the os2 ea_list torture test 2007-10-10 13:07:33 -05:00
Andrew Tridgell
f78506697a r4310: fixed the authority_name field in lsa_GetUserName() 2007-10-10 13:07:33 -05:00
Stefan Metzmacher
67e765b7e9 r4309: idl and torture test for lsa_GetUserName()
why does samba3 return domain_name as in the unknown_name field in the code
and on the wire it returns DCERPC_FAULT_OP_RNG_ERROR?

all of my test machines NT4,W2K,W2K3,XP returned NULL

and if I file the string in the .in.* the server echos the strings back
and returns NT_STATUS_INVALID_PARAMETER

metze
2007-10-10 13:07:33 -05:00
Stefan Metzmacher
a46c68a800 r4308: [out,ref] pointer needs to set (don't corrupt the stack and segfault)
metze

PS: <tridge> "silly tridge forgot a out [ref] var" :-)
2007-10-10 13:07:32 -05:00
Andrew Tridgell
705b870c73 r4279: added IDL and test code for lsa_AddPrivilegesToAccount() and lsa_RemovePrivilegesFromAccount() 2007-10-10 13:07:31 -05:00
Andrew Tridgell
bafdb17729 r4277: - added server support for lsa_EnumAccounts()
- expanded the lsa test suite to better test lsa_EnumAccounts()
2007-10-10 13:07:31 -05:00
Andrew Tridgell
25189b8fbf r4263: added support for the trans2 RAW_SEARCH_EA_LIST information
level. This is quite a strange level that we've never seen before, but
is used by the os2 workplace shell.

note w2k screws up this level when unicode is negotiated, so it only
passes the RAW-SEARCH test when you force non-unicode
2007-10-10 13:07:29 -05:00
Andrew Tridgell
0b76d405a7 r4261: added the RAW_FILEINFO_EA_LIST trans2 qfileinfo and qpathinfo
level. Interestingly, this level did now show up on our trans2 scanner
previously as we didn't have the FLAGS2_EXTENDED_ATTRIBUTES bit set in
the client code. Now that we set that bit, new levels appear in
windows servers.
2007-10-10 13:07:29 -05:00
Andrew Tridgell
b26828bef5 r4243: a sniff from kukks showed that the ea_set interface in trans2 setfileinfo allows
for multiple EAs to be set at once. This fixes all the ea code to allow for that.
2007-10-10 13:07:28 -05:00
Andrew Tridgell
7bddd47403 r4195: added IDL, test suite and server side code for lsa_LookupPrivValue 2007-10-10 13:07:25 -05:00
Andrew Tridgell
0134d8e9cc r4183: expanded the RAW-MKDIR torture test to test creation of EA lists 2007-10-10 13:07:24 -05:00
Stefan Metzmacher
00395ffcc3 r4180: use the same syntax as the other torture tests
metze
2007-10-10 13:07:23 -05:00
Stefan Metzmacher
8373b2d4c7 r4179: - nicer code layout
- and disable DsReplicaSync by default it kill lsass.exe
  on my w2k box

metze
2007-10-10 13:07:23 -05:00
Stefan Metzmacher
ca610da1fc r4176: I just remeber that I have already implement STR_CONFORMANT
so use it in DsReplicaSync()

metze
2007-10-10 13:07:23 -05:00
Jelmer Vernooij
3538130bf5 r4175: InitiateSystemShutdownEx IDL and torture test 2007-10-10 13:07:22 -05:00
Andrew Tridgell
a56d95ad89 r4173: - new t2open code, that can cope with "create with EAs". Many thanks
to kukks on #samba-technical for the sniffs that allowed me to work
  this out

- much simpler ntvfs open generic mapping code

- added t2open create with EA torture test to RAW-OPEN test
2007-10-10 13:07:22 -05:00
Stefan Metzmacher
be449f628f r4172: commit a DsReplicaSync() torture test
this not make much sense as we don't send the correct nc_name
but it shows that doesn't get a NDR_FAULT anymore,
we just need handle the conformant strings in pidl

metze
2007-10-10 13:07:22 -05:00
Stefan Metzmacher
26a7f4cf5e r4169: add descriptions about binding and unc strings to the
smbtorture --usage --help output

metze
2007-10-10 13:07:22 -05:00
Jelmer Vernooij
a402142431 r4168: Implement QueryValue in the server
IDL for NotifyChangeKeyValue
2007-10-10 13:07:21 -05:00
Jelmer Vernooij
ad8d9e6f73 r4167: Fix CreateKey
Support CreateKey in the RPC registry backend
2007-10-10 13:07:21 -05:00
Andrew Tridgell
57204a1533 r4164: added a test that simulates a OS/2 file delete. This includes seek by
name back into a directory for files that no longer exist.
2007-10-10 13:07:21 -05:00
Jelmer Vernooij
a763bd8385 r4158: Fix IDL for InitiateShutdown and AbortShutdown and run both only
when dangerous tests are enabled.
2007-10-10 13:07:20 -05:00
Jelmer Vernooij
72618dfe95 r4157: QueryMultipleValues IDL and torture test
Initialisation data pointer in QueryValue torture test
2007-10-10 13:07:20 -05:00
Jelmer Vernooij
1c49de51ae r4156: GetKeySecurity() IDL and torture test 2007-10-10 13:07:20 -05:00
Andrew Tridgell
7b446af09b r4147: converted from NT_USER_TOKEN to struct security_token
this is mostly just a tidyup, but also adds the privilege_mask, which
I will be using shortly in ACL checking.

note that I had to move the definition of struct security_token out of
security.idl as pidl doesn't yet handle arrays of pointers, and the
usual workaround (to use a intermediate structure) would make things
too cumbersome for this structure, especially given we never encode it
to NDR.
2007-10-10 13:06:31 -05:00
Jelmer Vernooij
bba4e878b4 r4142: Check result value of OpenHKU and OpenHKCR 2007-10-10 13:06:30 -05:00
Andrew Tridgell
952a26c561 r4138: initialise 'type' in RPC-WINREG EnumValue test 2007-10-10 13:06:30 -05:00
Jelmer Vernooij
c169e86c1f r4132: - Bunch of rather large fixes in the registry
- Added some README files

Not everything works yet, e.g. the EnumValue test appears to be broken.
2007-10-10 13:06:29 -05:00