diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-05-10 00:42:06 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-05-18 11:45:31 +0200 |
commit | b8268cf7b0264ea28f684cbdfbf462e68a018d83 (patch) | |
tree | 638192f21ae437a5c59ab2ec4500c9ea8c9f7b54 /source3/services | |
parent | f9ca9e46ad24036bf00cb361a6cef4b2e7e98d7d (diff) | |
download | samba-b8268cf7b0264ea28f684cbdfbf462e68a018d83.tar.gz samba-b8268cf7b0264ea28f684cbdfbf462e68a018d83.tar.bz2 samba-b8268cf7b0264ea28f684cbdfbf462e68a018d83.zip |
s3: Remove use of iconv_convenience.
Diffstat (limited to 'source3/services')
-rw-r--r-- | source3/services/services_db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/services/services_db.c b/source3/services/services_db.c index 9b28afecd7..749770102b 100644 --- a/source3/services/services_db.c +++ b/source3/services/services_db.c @@ -648,7 +648,7 @@ const char *svcctl_lookup_dispname(TALLOC_CTX *ctx, const char *name, NT_USER_TO goto fail; blob = data_blob_const(regval_data_p(val), regval_size(val)); - pull_reg_sz(ctx, NULL, &blob, &display_name); + pull_reg_sz(ctx, &blob, &display_name); TALLOC_FREE( key ); @@ -702,7 +702,7 @@ const char *svcctl_lookup_description(TALLOC_CTX *ctx, const char *name, NT_USER } blob = data_blob_const(regval_data_p(val), regval_size(val)); - pull_reg_sz(ctx, NULL, &blob, &description); + pull_reg_sz(ctx, &blob, &description); TALLOC_FREE(key); |