diff options
-rw-r--r-- | src/charon/sa/ike_sa.c | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |