r22011: As Metze suggested, use 0xFF 'E' <enc ctx> instead
authorJeremy Allison <jra@samba.org>
Thu, 29 Mar 2007 19:46:34 +0000 (19:46 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:19:01 +0000 (12:19 -0500)
of 0xFF 'S' <enc ctx>.
Jeremy.
(This used to be commit d8cd4fc91b324c9ab8d2f66ee264093763018f76)

source3/lib/util.c

index 964b3813edbfb92e77ccf3129070a5c1e31aa85d..cf8d49c502e1938f8b222b84599fa6bca117cf1b 100644 (file)
@@ -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);
 }