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 | 17136a88c326bf338f948a67c92bb048c5a148af (patch) | |
tree | eed4a6c0a0e5f5277ecf614df791f6e6eb41817b /source/registry | |
parent | 3b0e60e522b669bad77e70d9c6f484a08ff84612 (diff) | |
download | samba-17136a88c326bf338f948a67c92bb048c5a148af.tar.gz samba-17136a88c326bf338f948a67c92bb048c5a148af.tar.xz samba-17136a88c326bf338f948a67c92bb048c5a148af.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
Diffstat (limited to 'source/registry')
-rw-r--r-- | source/registry/reg_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/registry/reg_db.c b/source/registry/reg_db.c index db32568f157..b4c8f60ccf5 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 ); |