diff options
author | Gerald Carter <jerry@samba.org> | 2002-08-18 12:33:41 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2002-08-18 12:33:41 +0000 |
commit | 11fadbee748a64535de47f7508e5764cc04fec70 (patch) | |
tree | a60952c0d48791fb83087444530f92fe6bb15925 /source3/registry | |
parent | 50d224a898fa130460bba4009e18fb54b1390168 (diff) | |
download | samba-11fadbee748a64535de47f7508e5764cc04fec70.tar.gz samba-11fadbee748a64535de47f7508e5764cc04fec70.tar.bz2 samba-11fadbee748a64535de47f7508e5764cc04fec70.zip |
fix GetPrinterDataEx() to work with registry subkeys using a depth > 1
(This used to be commit 8799d4f7ccf3b3767c155d29f15cecd142d0db99)
Diffstat (limited to 'source3/registry')
-rw-r--r-- | source3/registry/reg_frontend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/registry/reg_frontend.c b/source3/registry/reg_frontend.c index 994f03cf5a..f31f675997 100644 --- a/source3/registry/reg_frontend.c +++ b/source3/registry/reg_frontend.c @@ -332,7 +332,7 @@ REGISTRY_VALUE* regval_ctr_getvalue( REGVAL_CTR *ctr, char *name ) /* search for the value */ for ( i=0; i<ctr->num_values; i++ ) { - if ( strequal( ctr->values[i]->valuename, name ) == 0) + if ( strequal( ctr->values[i]->valuename, name ) ) return ctr->values[i]; } |