head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2003.04.14.17.25.20; author swiergot; state Exp; branches; next ; desc @@ 1.1 log @- Initial release. - Version ss021109. @ text @diff -u ping6.c.orig ping6.c --- ping6.c.orig Thu Feb 21 21:55:30 2002 +++ ping6.c Thu Feb 21 21:56:27 2002 @@@@ -785,22 +785,22 @@@@ printf("Destination unreachable: "); switch (code) { case ICMPV6_NOROUTE: - printf("No route"); + printf("No route\n"); break; case ICMPV6_ADM_PROHIBITED: - printf("Administratively prohibited"); + printf("Administratively prohibited\n"); break; case ICMPV6_NOT_NEIGHBOUR: - printf("Not neighbour"); + printf("Not neighbour\n"); break; case ICMPV6_ADDR_UNREACH: - printf("Address unreachable"); + printf("Address unreachable\n"); break; case ICMPV6_PORT_UNREACH: - printf("Port unreachable"); + printf("Port unreachable\n"); break; default: - printf("Unknown code %d", code); + printf("Unknown code %d\n", code); break; } break; @ .