Commit 71536900 authored by Deomid "rojer" Ryabkov's avatar Deomid "rojer" Ryabkov Committed by Cesanta Bot

Keep the size of the structure the same in non-SSL build

PUBLISHED_FROM=8f93bee72bc18efff64354203ee6268f4f8e8768
parent f00b3a2b
......@@ -61,6 +61,8 @@ signature: |
#if MG_ENABLE_SSL
void *ssl_if_data; /* SSL library data. */
#else
void *unused_ssl_if_data; /* To keep the size of the structure the same. */
#endif
};
---
......
......@@ -3635,6 +3635,8 @@ struct mg_connection {
#if MG_ENABLE_SSL
void *ssl_if_data; /* SSL library data. */
#else
void *unused_ssl_if_data; /* To keep the size of the structure the same. */
#endif
};
......
......@@ -155,6 +155,8 @@ struct mg_connection {
#if MG_ENABLE_SSL
void *ssl_if_data; /* SSL library data. */
#else
void *unused_ssl_if_data; /* To keep the size of the structure the same. */
#endif
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment