diff options
author | Jeremy Allison <jra@samba.org> | 2007-03-29 19:46:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:19:01 -0500 |
commit | 0eefab112fc1634dc45870df7bb210b1afe59783 (patch) | |
tree | baa2fe8383fba7c551b9da48af4dd2ab4862533f /source3/lib/util.c | |
parent | 75b4e240671067e1e94825b9e923eb4a4de0b708 (diff) | |
download | samba-0eefab112fc1634dc45870df7bb210b1afe59783.tar.gz samba-0eefab112fc1634dc45870df7bb210b1afe59783.tar.bz2 samba-0eefab112fc1634dc45870df7bb210b1afe59783.zip |
r22011: As Metze suggested, use 0xFF 'E' <enc ctx> instead
of 0xFF 'S' <enc ctx>.
Jeremy.
(This used to be commit d8cd4fc91b324c9ab8d2f66ee264093763018f76)
Diffstat (limited to 'source3/lib/util.c')
-rw-r--r-- | source3/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 964b3813ed..cf8d49c502 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -525,7 +525,7 @@ void smb_set_enclen(char *buf,int len,uint16 enc_ctx_num) _smb_setlen(buf,len); SCVAL(buf,4,0xFF); - SCVAL(buf,5,'S'); + SCVAL(buf,5,'E'); SSVAL(buf,6,enc_ctx_num); } |