summaryrefslogtreecommitdiffstats
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
commit2ad0e81c8da62b7e15ab3e414b5e15a94fe5de87 (patch)
treee7bc4127b9a15e1fdab57c41a049c577d2db4e1e
parenteb3354aa6c7293df9a728565a6774049b2e6d57f (diff)
downloadsamba-2ad0e81c8da62b7e15ab3e414b5e15a94fe5de87.tar.gz
samba-2ad0e81c8da62b7e15ab3e414b5e15a94fe5de87.tar.xz
samba-2ad0e81c8da62b7e15ab3e414b5e15a94fe5de87.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.
-rw-r--r--source/registry/reg_db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/registry/reg_db.c b/source/registry/reg_db.c
index b4c8f60ccf5..db32568f157 100644
--- a/source/registry/reg_db.c
+++ b/source/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 );