Back out idra's change (at his request) - the values in the tdb *should* be
authorAndrew Bartlett <abartlet@samba.org>
Tue, 6 Aug 2002 10:10:54 +0000 (10:10 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 6 Aug 2002 10:10:54 +0000 (10:10 +0000)
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)

source3/registry/reg_db.c

index db32568f1576628f58e2792ea1cc9d0542151522..b4c8f60ccf5257f2dbb78737f49bbccb7e38420e 100644 (file)
@@ -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 );