diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-11-13 08:16:52 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2003-11-13 08:16:52 +0000 |
commit | a2e3a35f06ab1185d5679eddd99a52423d373cfa (patch) | |
tree | e6d93e17c572b0260949a4de1957b34970adbb43 | |
parent | 87332bc8fea0edccaf571116ae65c46fed7dc096 (diff) | |
download | wireshark-a2e3a35f06ab1185d5679eddd99a52423d373cfa.tar.gz wireshark-a2e3a35f06ab1185d5679eddd99a52423d373cfa.tar.bz2 wireshark-a2e3a35f06ab1185d5679eddd99a52423d373cfa.zip |
Change the strings shown for ICMP TTL exceeded to match the wording in the standard
svn path=/trunk/; revision=8955
-rw-r--r-- | packet-ip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ip.c b/packet-ip.c index dc738b5a4d..f43f977a28 100644 --- a/packet-ip.c +++ b/packet-ip.c @@ -1,7 +1,7 @@ /* packet-ip.c * Routines for IP and miscellaneous IP protocol packet disassembly * - * $Id: packet-ip.c,v 1.200 2003/10/15 22:00:02 guy Exp $ + * $Id: packet-ip.c,v 1.201 2003/11/13 08:16:52 sahlberg Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1281,8 +1281,8 @@ static const gchar *redir_str[] = {"Redirect for network", #define N_REDIRECT (sizeof redir_str / sizeof redir_str[0]) -static const gchar *ttl_str[] = {"TTL equals 0 during transit", - "TTL equals 0 during reassembly"}; +static const gchar *ttl_str[] = {"Time to live exceeded in transit", + "Fragment reassembly time exceeded"}; #define N_TIMXCEED (sizeof ttl_str / sizeof ttl_str[0]) |