From 730e2c0542c0e18ddba895e46ff9ee76d6c458d4 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Wed, 1 Nov 2006 20:29:04 +0000 Subject: log IKE SPIs on a separate line --- src/charon/sa/ike_sa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/charon/sa/ike_sa.c b/src/charon/sa/ike_sa.c index 9eb25bfbd..a12cc2018 100644 --- a/src/charon/sa/ike_sa.c +++ b/src/charon/sa/ike_sa.c @@ -1891,10 +1891,10 @@ static int print(FILE *stream, const struct printf_info *info, return fprintf(stream, "(null)"); } - written = fprintf(stream, "%12s: %N, %H[%D]...%H[%D], IKE SPIs: %J", + written = fprintf(stream, "%12s: %N, %H[%D]...%H[%D]", this->name, ike_sa_state_names, this->state, - this->my_host, this->my_id, this->other_host, this->other_id, - this->ike_sa_id); + this->my_host, this->my_id, this->other_host, this->other_id); + written += fprintf(stream, "\n%12s: IKE SPIs: %J", this->name, this->ike_sa_id); if (info->alt) { -- cgit v1.2.3