diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-08-06 10:10:54 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-08-06 10:10:54 +0000 |
commit | 9542ef87c08de135cf3bf91c17c4b28bd8afb3ea (patch) | |
tree | ac7968f2768644609dd01d43e798f003f3bc9881 /source3/registry | |
parent | db20fa5d4ea17b295c09a68f4210a62802704b32 (diff) | |
download | samba-9542ef87c08de135cf3bf91c17c4b28bd8afb3ea.tar.gz samba-9542ef87c08de135cf3bf91c17c4b28bd8afb3ea.tar.xz samba-9542ef87c08de135cf3bf91c17c4b28bd8afb3ea.zip |
Back out idra's change (at his request) - the values in the tdb *should* be
upper cased already.
However, if you created your registry tdb in the very early versions of jerry's
patch, you could find that usrmgr doesn't function. Simply delete the
registry.tdb, it will be recreated on startup.
Andrew Bartlett
(This used to be commit 17136a88c326bf338f948a67c92bb048c5a148af)
Diffstat (limited to 'source3/registry')
-rw-r--r-- | source3/registry/reg_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/reg_db.c b/source3/registry/reg_db.c index db32568f157..b4c8f60ccf5 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 ); |