aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/plugins/stroke/stroke_list.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2008-09-25 13:56:23 +0000
committerTobias Brunner <tobias@strongswan.org>2008-09-25 13:56:23 +0000
commita341a68fac045e94a45aa3fb1f7ac3e821e8a8be (patch)
tree3a55ecb885c39c1bb7ff48f1b9162291b97c9217 /src/charon/plugins/stroke/stroke_list.c
parent507f26f685b83ced2b2cd51465ad426bf87f2da5 (diff)
downloadstrongswan-a341a68fac045e94a45aa3fb1f7ac3e821e8a8be.tar.bz2
strongswan-a341a68fac045e94a45aa3fb1f7ac3e821e8a8be.tar.xz
merging renaming of mode_t to ipsec_mode_t back to trunk
Diffstat (limited to 'src/charon/plugins/stroke/stroke_list.c')
-rw-r--r--src/charon/plugins/stroke/stroke_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/plugins/stroke/stroke_list.c b/src/charon/plugins/stroke/stroke_list.c
index 133d68a4b..5c2069cf7 100644
--- a/src/charon/plugins/stroke/stroke_list.c
+++ b/src/charon/plugins/stroke/stroke_list.c
@@ -127,7 +127,7 @@ static void log_child_sa(FILE *out, child_sa_t *child_sa, bool all)
encryption_algorithm_t encr_alg;
integrity_algorithm_t int_alg;
size_t encr_len, int_len;
- mode_t mode;
+ ipsec_mode_t mode;
child_sa->get_stats(child_sa, &mode, &encr_alg, &encr_len,
&int_alg, &int_len, &rekey, &use_in, &use_out,
@@ -136,7 +136,7 @@ static void log_child_sa(FILE *out, child_sa_t *child_sa, bool all)
fprintf(out, "%12s{%d}: %N, %N",
child_sa->get_name(child_sa), child_sa->get_reqid(child_sa),
child_sa_state_names, child_sa->get_state(child_sa),
- mode_names, mode);
+ ipsec_mode_names, mode);
if (child_sa->get_state(child_sa) == CHILD_INSTALLED)
{