summaryrefslogtreecommitdiff
path: root/source3/registry
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2002-08-04 14:25:32 +0000
committerSimo Sorce <idra@samba.org>2002-08-04 14:25:32 +0000
commit918e681894c5102407a9bfd1790d113cb6926894 (patch)
tree8823b7e1f6da2d0b90f561d79e0784bd7d4538e8 /source3/registry
parent056f849f0c57636787800457d2d191aefacfac05 (diff)
downloadsamba-918e681894c5102407a9bfd1790d113cb6926894.tar.gz
samba-918e681894c5102407a9bfd1790d113cb6926894.tar.bz2
samba-918e681894c5102407a9bfd1790d113cb6926894.zip
commented out strupper before key check against internal db, it's no good
to check for uppercased strings when we store them not uppercased. jerry, this fix is needed to make usrmgr.exe work again. meanwhile we found out that NT_STATUS code may not be appropriate there. In particular it seem that an NT PDC will send back 02 as error (ERRbadfile) not 0xc000000f (NT_STATUS_NO_SUCH_FILE NT) I think further investigation is need to understand which are aprropriate return codes here. (This used to be commit 2ad0e81c8da62b7e15ab3e414b5e15a94fe5de87)
Diffstat (limited to 'source3/registry')
-rw-r--r--source3/registry/reg_db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/reg_db.c b/source3/registry/reg_db.c
index b4c8f60ccf..db32568f15 100644
--- a/source3/registry/reg_db.c
+++ b/source3/registry/reg_db.c
@@ -248,7 +248,7 @@ int regdb_fetch_reg_keys( char* key, REGSUBKEY_CTR *ctr )
/* convert to key format */
pstring_sub( path, "\\", "/" );
- strupper_m( path );
+ /*strupper_m( path );*/
dbuf = tdb_fetch_by_string( tdb_reg, path );