diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-02-21 03:40:20 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-02-21 03:40:20 +0000 |
commit | a8ab9840786b8376283743de8eef861d382b3171 (patch) | |
tree | b0724235c8223e11e1287f0b542bf9f2bd28ef1e /source3/include/proto.h | |
parent | 518f2fc391266c2f9b9cfc8b485a8e57ce359be8 (diff) | |
download | samba-a8ab9840786b8376283743de8eef861d382b3171.tar.gz samba-a8ab9840786b8376283743de8eef861d382b3171.tar.bz2 samba-a8ab9840786b8376283743de8eef861d382b3171.zip |
the unicode conversion of our client code is complete enough to be
enabled by default
you can disable it by setting the environment variable CLI_FORCE_ASCII
(This used to be commit 4d59c08c5e6f54c0d6ced7650750cb987e77b6c9)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d25935c9c6..ab1f235aa7 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -821,7 +821,6 @@ BOOL cli_unlink(struct cli_state *cli, char *fname); BOOL cli_mkdir(struct cli_state *cli, char *dname); BOOL cli_rmdir(struct cli_state *cli, char *dname); int cli_nt_create(struct cli_state *cli, char *fname, uint32 DesiredAccess); -int cli_nt_create_uni(struct cli_state *cli, char *fname, uint32 DesiredAccess); int cli_open(struct cli_state *cli, char *fname, int flags, int share_mode); BOOL cli_close(struct cli_state *cli, int fnum); BOOL cli_lock(struct cli_state *cli, int fnum, @@ -844,7 +843,7 @@ BOOL cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail); int cli_list(struct cli_state *cli,const char *Mask,uint16 attribute, void (*fn)(file_info *, const char *, void *), void *state); int cli_list_old(struct cli_state *cli,const char *Mask,uint16 attribute, - void (*fn)(file_info *, const char *)); + void (*fn)(file_info *, const char *, void *), void *state); /*The following definitions come from libsmb/climessage.c */ |