diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2001-06-06 20:52:30 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2001-06-06 20:52:30 +0000 |
| commit | 3ce965f82e30d0f49bb0b503b66dbcf6c4824094 (patch) | |
| tree | d0611319b9b259f31d74ca808d413925216c6a9c | |
| parent | d57dbd161538b5f0f0458ad37aed4a5fd515e70a (diff) | |
Notes
| -rw-r--r-- | sbin/routed/input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/routed/input.c b/sbin/routed/input.c index f1bfa379b59d9..dd94fd6fd2c13 100644 --- a/sbin/routed/input.c +++ b/sbin/routed/input.c @@ -484,7 +484,8 @@ input(struct sockaddr_in *from, /* received from this IP address */ if (from->sin_port != ntohs(RIP_PORT)) { msglim(&bad_router, FROM_NADDR, " discard RIP response from unknown port" - " %d", from->sin_port); + " %d on host %s", ntohs(from->sin_port), + naddr_ntoa(FROM_NADDR)); return; } |
