From 257fe7bd84a14ba74506f5a582424a0c3b1fa5cc Mon Sep 17 00:00:00 2001 From: david Date: Tue, 14 Jun 2011 19:46:45 +0000 Subject: [PATCH] Fix the singular for ER_PROTOUNREACH. --- portreasons.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/portreasons.cc b/portreasons.cc index c237d92f5..00194f618 100644 --- a/portreasons.cc +++ b/portreasons.cc @@ -129,7 +129,7 @@ reason_map_type::reason_map_type(){ reason_map[ER_NETUNREACH] = reason_string("net-unreach","net-unreaches"); reason_map[ER_HOSTUNREACH] = reason_string("host-unreach","host-unreaches"); - reason_map[ER_PROTOUNREACH] = reason_string("proto-unreaches","proto-unreaches"); + reason_map[ER_PROTOUNREACH] = reason_string("proto-unreach","proto-unreaches"); reason_map[ER_PORTUNREACH] = reason_string("port-unreach","port-unreaches"); reason_map[ER_ECHOREPLY] = reason_string("echo-reply","echo-replies");