Author: metze Date: 2006-06-21 21:28:07 +0000 (Wed, 21 Jun 2006) New Revision: 16450
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=16450 Log: fix the build... metze Modified: branches/SAMBA_4_0/source/smb_server/smb_server.h Changeset: Modified: branches/SAMBA_4_0/source/smb_server/smb_server.h =================================================================== --- branches/SAMBA_4_0/source/smb_server/smb_server.h 2006-06-21 21:24:00 UTC (rev 16449) +++ branches/SAMBA_4_0/source/smb_server/smb_server.h 2006-06-21 21:28:07 UTC (rev 16450) @@ -209,6 +209,8 @@ /* a set of flags to control handling of request structures */ #define SMBSRV_REQ_CONTROL_LARGE (1<<1) /* allow replies larger than max_xmit */ +#define SMBSRV_REQ_DEFAULT_STR_FLAGS(req) (((req)->flags2 & FLAGS2_UNICODE_STRINGS) ? STR_UNICODE : STR_ASCII) + /* the context for a single SMB request. This is passed to any request-context functions */ struct smbsrv_request {
