diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-28 11:51:55 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-28 11:51:55 +0000 |
commit | 6b84af6421a549d05ca487f12c6c521c932ffe61 (patch) | |
tree | 02f8e908ae7123374733eb13c725d21485296a08 /source3 | |
parent | e11d91e20114e03107b67a266e8cda0bc5aa6335 (diff) | |
download | samba-6b84af6421a549d05ca487f12c6c521c932ffe61.tar.gz samba-6b84af6421a549d05ca487f12c6c521c932ffe61.tar.bz2 samba-6b84af6421a549d05ca487f12c6c521c932ffe61.zip |
As per a comment by herb a little while back, this should be >=, not == to keep
identical behaviour with previous versions
(This used to be commit 7cbb194b58a4313497541c1f8153533c5034b928)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/sesssetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index 51bdfd6354..679f040b2c 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -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?? */ } |