aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/pkt.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pkt.c b/src/pkt.c
index 8972dab..3cc4554 100644
--- a/src/pkt.c
+++ b/src/pkt.c
@@ -530,6 +530,8 @@ void handle_ack(uint16_t seq_no, icmp_desc_t ring[], int *packets_awaiting_ack,
}
}
}
- else
- pt_log(kLog_verbose, "Dropping superfluous acknowledgement (no outstanding packets needing ack.)\n");
+ else {
+ pt_log(kLog_verbose, "Dropping superfluous acknowledgement for seq %d "
+ "(no outstanding packets needing ack.)\n", seq_no);
+ }
}