diff options
author | Michael Adam <obnox@samba.org> | 2009-03-23 18:14:17 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-04-27 11:21:02 +0200 |
commit | 221151a2a2c30e5c82b100161b498fdbbc1d4382 (patch) | |
tree | d4346a16206b3308ff20b026012aa095e99d778a /source3/libads | |
parent | 38d02c5d857ecea3405c3f48e64906764329f1a1 (diff) | |
download | samba-221151a2a2c30e5c82b100161b498fdbbc1d4382.tar.gz samba-221151a2a2c30e5c82b100161b498fdbbc1d4382.tar.bz2 samba-221151a2a2c30e5c82b100161b498fdbbc1d4382.zip |
s3:registry: replace typedef REGVAL_CTR by struct regval_ctr.
This paves the way for hiding the typedef and the implementation
from the surface.
Michael
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap_printer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap_printer.c b/source3/libads/ldap_printer.c index 7fec58c7eb..c1bfd75d88 100644 --- a/source3/libads/ldap_printer.c +++ b/source3/libads/ldap_printer.c @@ -403,7 +403,7 @@ bool get_local_printer_publishing_data(TALLOC_CTX *mem_ctx, uint32 key,val; for (key=0; key < data->num_keys; key++) { - REGVAL_CTR *ctr = data->keys[key].values; + struct regval_ctr *ctr = data->keys[key].values; for (val=0; val < ctr->num_values; val++) map_regval_to_ads(mem_ctx, mods, ctr->values[val]); } |