diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-03-13 00:55:19 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-03-13 00:55:19 +0000 |
commit | 23e5cf060d282c9ba9bdf49884ce23a13b285aac (patch) | |
tree | 9f28af0029eff4813eb80af315b8ce7ab16f07ac /source3/include | |
parent | 769659eb0849fbc30a3284f99563dde965318bfd (diff) | |
download | samba-23e5cf060d282c9ba9bdf49884ce23a13b285aac.tar.gz samba-23e5cf060d282c9ba9bdf49884ce23a13b285aac.tar.bz2 samba-23e5cf060d282c9ba9bdf49884ce23a13b285aac.zip |
this patch does a number of things:
- removes SMB_ALIGNMENT. That macro caused all sorts of problems with
getting unicode aligned right in sub-protocols (such as SMBtrans and
SMBtrans2). I believe the performance reasons for having
SMB_ALIGNMENT has gone away with the new variants of the SMB
protocol anyway, as newer commands tend to have their own internal
alignment.
- fix the locations where we set smb_flg2 to absolute values. We must
never do this if we want a hope of coping with unicode.
- add initial support for unicode on the wire in smbd. Currently
enabled using SMBD_USE_UNICODE environment variable.
(This used to be commit b98b1435e9d8f8622444c9ff33082977e661f16b)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/local.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/source3/include/local.h b/source3/include/local.h index b5590f9f91..f693d18623 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -134,9 +134,6 @@ accessible to root */ #define DUMP_CORE 1 -#define SMB_ALIGNMENT 1 - - /* shall we support browse requests via a FIFO to nmbd? */ #define ENABLE_FIFO 1 |