From bdb04e35d24c33ba101fb9f18ef8a8aaac0f333a Mon Sep 17 00:00:00 2001 From: Michael Tuexen <tuexen@fh-muenster.de> Date: Fri, 15 May 2015 12:49:58 +0200 Subject: [PATCH] Improve SCTP chunk printing. Put in a missing ',' between the flags and error causes when printing ABORT[] and ERROR[] chunks if both are available. --- gtests/net/packetdrill/sctp_chunk_to_string.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtests/net/packetdrill/sctp_chunk_to_string.c b/gtests/net/packetdrill/sctp_chunk_to_string.c index 48b05824..842978bf 100644 --- a/gtests/net/packetdrill/sctp_chunk_to_string.c +++ b/gtests/net/packetdrill/sctp_chunk_to_string.c @@ -966,7 +966,7 @@ static int sctp_abort_chunk_to_string(FILE *s, &iter, error); cause != NULL; cause = sctp_causes_next(&iter, error)) { - if (index > 0) + if (((index == 0) && (flags != 0x00)) || (index > 0)) fputs(", ", s); if (*error != NULL) break; @@ -1049,7 +1049,7 @@ static int sctp_error_chunk_to_string(FILE *s, &iter, error); cause != NULL; cause = sctp_causes_next(&iter, error)) { - if (index > 0) + if (((index == 0) && (flags != 0x00)) || (index > 0)) fputs(", ", s); if (*error != NULL) break; -- GitLab