diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-09-08 09:49:26 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-09-08 17:51:30 +0200 |
commit | a7e418dd45fe81af4ec4fbddfcfffb491487a8b7 (patch) | |
tree | 1d229cf3991ece03c6a086b9abbef1df835f6968 /source3/include | |
parent | db79aa7260759c451e38e2df46562d01ce5514c6 (diff) | |
download | samba-a7e418dd45fe81af4ec4fbddfcfffb491487a8b7.tar.gz samba-a7e418dd45fe81af4ec4fbddfcfffb491487a8b7.tar.bz2 samba-a7e418dd45fe81af4ec4fbddfcfffb491487a8b7.zip |
s3:libsmb: add CLI_FULL_CONNECTION_FORCE_ASCII
metze
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/client.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/client.h b/source3/include/client.h index 6566769eac..9eae222140 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -114,6 +114,7 @@ struct cli_state { bool use_level_II_oplocks; /* should we use level II oplocks? */ bool force_dos_errors; + bool force_ascii; bool case_sensitive; /* False by default. */ /* Where (if anywhere) this is mounted under DFS. */ @@ -194,5 +195,6 @@ struct file_info { #define CLI_FULL_CONNECTION_LEVEL_II_OPLOCKS 0x0020 #define CLI_FULL_CONNECTION_USE_CCACHE 0x0040 #define CLI_FULL_CONNECTION_FORCE_DOS_ERRORS 0x0080 +#define CLI_FULL_CONNECTION_FORCE_ASCII 0x0100 #endif /* _CLIENT_H */ |