Make OPENSSL_NO_COMP compile again.
[openssl.git] / ssl / d1_srvr.c
index 4847a866b5d9340e777096f855631a07d45806ad..2b0578ff7fe00edd1e1319befb76e39bb034f782 100644 (file)
@@ -706,10 +706,14 @@ int dtls1_send_server_hello(SSL *s)
                p+=i;
 
                /* put the compression method */
+#ifdef OPENSSL_NO_COMP
+               *(p++)=0;
+#else
                if (s->s3->tmp.new_compression == NULL)
                        *(p++)=0;
                else
                        *(p++)=s->s3->tmp.new_compression->id;
+#endif
 
                /* do the header */
                l=(p-d);