As per a comment by herb a little while back, this should be >=, not == to keep
authorAndrew Bartlett <abartlet@samba.org>
Tue, 28 Jan 2003 11:51:55 +0000 (11:51 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 28 Jan 2003 11:51:55 +0000 (11:51 +0000)
identical behaviour with previous versions
(This used to be commit 7cbb194b58a4313497541c1f8153533c5034b928)

source3/smbd/sesssetup.c

index 51bdfd6354c18e371f87ac7a235cce3b9e76dddd..679f040b2cb5d9f07d9b97a9ffb7baf724088bcc 100644 (file)
@@ -680,7 +680,7 @@ int reply_sesssetup_and_X(connection_struct *conn, char *inbuf,char *outbuf,
        
        /* it's ok - setup a reply */
        set_message(outbuf,3,0,True);
-       if (Protocol == PROTOCOL_NT1) {
+       if (Protocol >= PROTOCOL_NT1) {
                add_signature(outbuf);
                /* perhaps grab OS version here?? */
        }