Line 2250 of s3_srvr.c has the following conditional statement:

     if ((peer != NULL) && (type | EVP_PKT_SIGN))

As EVP_PKT_SIGN is non-zero, this boils down to:

     if ((peer != NULL) && (TRUE))

or just:

      if (peer != NULL)

Should the line be:

     if ((peer != NULL) && (type & EVP_PKT_SIGN))

or am I missing something?


--Ryan Smith

Line 2250 of s3_srvr.c has the following conditional statement:

     if ((peer != NULL) && (type | EVP_PKT_SIGN))
 
As EVP_PKT_SIGN is non-zero, this boils down to:
 
     if ((peer != NULL) && (TRUE))
 
or just:
 
     if (peer != NULL)
 
Should the line be:
 
     if ((peer != NULL) && (type & EVP_PKT_SIGN))
 
or am I missing something?
 
 
--Ryan Smith
 

 

Reply via email to