aboutsummaryrefslogtreecommitdiffstats
path: root/capture_stop_conditions.c
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2017-09-05 17:18:00 +0100
committerJoão Valverde <j@v6e.pt>2017-09-06 08:10:56 +0000
commitd0a91b27f26762e9c998cc5e6fe71767de5d32c7 (patch)
tree9850efb16c84537dba93ee3d6ac8b186036ae00b /capture_stop_conditions.c
parent143bc04ca7c11b4f5a0feef4c01627c9aee6bcd4 (diff)
plugins: config.h must not be included by public headers
For a sane plugin build environment. Include config.h as the first header in the .c file instead. Fix by moving required compiler attribute macros to a new "ws_attributes.h" API header. Change-Id: I34f58a927f68c1a0e59686c14d214825149749e1 Reviewed-on: https://code.wireshark.org/review/23400 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'capture_stop_conditions.c')
-rw-r--r--capture_stop_conditions.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/capture_stop_conditions.c b/capture_stop_conditions.c
index 415bbfedbd..38da7b381e 100644
--- a/capture_stop_conditions.c
+++ b/capture_stop_conditions.c
@@ -28,6 +28,7 @@
#include <stdarg.h>
#include "conditions.h"
#include "capture_stop_conditions.h"
+#include "ws_attributes.h"
/* predefined classes function prototypes */
static condition* _cnd_constr_timeout(condition*, va_list);