diff options
author | Martin Willi <martin@strongswan.org> | 2008-07-18 15:51:40 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-07-18 15:51:40 +0000 |
commit | a4a3e0c7dcb475cb7e7fe73e974a7e9a9aaca1fa (patch) | |
tree | b9e1d1247c4bed48b42aed306f90ec99774cdc71 /src/charon/plugins/stroke/stroke_control.c | |
parent | 2f725443e59953347b2454393ce5186099e9c642 (diff) | |
download | strongswan-a4a3e0c7dcb475cb7e7fe73e974a7e9a9aaca1fa.tar.bz2 strongswan-a4a3e0c7dcb475cb7e7fe73e974a7e9a9aaca1fa.tar.xz |
introduced an additional bus->signal parameter for signal specific data
added SIG_IKE/SIG_CHD macros for signal emitting
Diffstat (limited to 'src/charon/plugins/stroke/stroke_control.c')
-rw-r--r-- | src/charon/plugins/stroke/stroke_control.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/stroke/stroke_control.c b/src/charon/plugins/stroke/stroke_control.c index 8fdd585e5..ed9dd7b16 100644 --- a/src/charon/plugins/stroke/stroke_control.c +++ b/src/charon/plugins/stroke/stroke_control.c @@ -56,7 +56,7 @@ struct stroke_log_info_t { * logging to the stroke interface */ static bool stroke_log(stroke_log_info_t *info, signal_t signal, level_t level, - ike_sa_t *ike_sa, char *format, va_list args) + ike_sa_t *ike_sa, void *data, char *format, va_list args) { if (level <= info->level) { |