aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-syslog.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2008-06-26 20:42:58 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2008-06-26 20:42:58 +0000
commit708fbadf26bc819a621775250d663c982e028cbc (patch)
treef2bc80c48d59431e501181954046fc60b589e749 /epan/dissectors/packet-syslog.c
parent9bc8f579a17c5aa020f4004d28fe0343db391ddc (diff)
Fix a comment: the subdissector won't /assert/ out it will /except/ out if the MSU is truncated.
svn path=/trunk/; revision=25613
Diffstat (limited to 'epan/dissectors/packet-syslog.c')
-rw-r--r--epan/dissectors/packet-syslog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-syslog.c b/epan/dissectors/packet-syslog.c
index fd4b0f98eb..81a11e8f37 100644
--- a/epan/dissectors/packet-syslog.c
+++ b/epan/dissectors/packet-syslog.c
@@ -203,7 +203,7 @@ mtp3_msu_present(gint fac, gint level, const char *msg_str)
/* convert_string_to_hex() will return NULL if it gets an incomplete
* byte. If we have an odd string length then chop off the remaining
* nibble so we can get at least a partial MSU (chances are the
- * subdissector will assert out, of course).
+ * subdissector will except out, of course).
*/
if (len % 2)
msu_hex_dump[len - 1] = '\0';