diff options
author | Luk Claes <luk@debian.org> | 2012-05-26 12:14:51 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-05-28 16:58:03 +0200 |
commit | 4688107800216a86646bc4838f7a485bae091370 (patch) | |
tree | 7af92e5426374f5a966436092462cc541bf54c5b /source3/libsmb/clilist.c | |
parent | 93ed99d6ffb948e9ddde9ddc7280b33fc86adc75 (diff) | |
download | samba-4688107800216a86646bc4838f7a485bae091370.tar.gz |
s3:libsmb: get rid of cli_ucs2
Signed-off-by: Luk Claes <luk@debian.org>
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User: Stefan Metzmacher <metze@samba.org>
Autobuild-Date: Mon May 28 16:58:03 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/libsmb/clilist.c')
-rw-r--r-- | source3/libsmb/clilist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libsmb/clilist.c b/source3/libsmb/clilist.c index f8e8994e4a..6185c5a997 100644 --- a/source3/libsmb/clilist.c +++ b/source3/libsmb/clilist.c @@ -324,7 +324,7 @@ static struct tevent_req *cli_list_old_send(TALLOC_CTX *mem_ctx, return tevent_req_post(req, ev); } bytes[0] = 4; - bytes = smb_bytes_push_str(bytes, cli_ucs2(cli), mask, + bytes = smb_bytes_push_str(bytes, smbXcli_conn_use_unicode(cli->conn), mask, strlen(mask)+1, NULL); bytes = smb_bytes_push_bytes(bytes, 5, (const uint8_t *)&zero, 2); @@ -428,7 +428,7 @@ static void cli_list_old_done(struct tevent_req *subreq) return; } bytes[0] = 4; - bytes = smb_bytes_push_str(bytes, cli_ucs2(state->cli), "", + bytes = smb_bytes_push_str(bytes, smbXcli_conn_use_unicode(state->cli->conn), "", 1, NULL); bytes = smb_bytes_push_bytes(bytes, 5, state->search_status, sizeof(state->search_status)); @@ -591,7 +591,7 @@ static struct tevent_req *cli_list_trans_send(TALLOC_CTX *mem_ctx, SSVAL(state->param, 6, state->info_level); SIVAL(state->param, 8, 0); - state->param = trans2_bytes_push_str(state->param, cli_ucs2(cli), + state->param = trans2_bytes_push_str(state->param, smbXcli_conn_use_unicode(cli->conn), state->mask, strlen(state->mask)+1, NULL); if (tevent_req_nomem(state->param, req)) { @@ -774,7 +774,7 @@ static void cli_list_trans_done(struct tevent_req *subreq) data_blob_free(&last_name_raw); } else { state->param = trans2_bytes_push_str(state->param, - cli_ucs2(state->cli), + smbXcli_conn_use_unicode(state->cli->conn), state->mask, strlen(state->mask)+1, NULL); |