aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dof.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2016-04-16 10:10:17 +0200
committerMichael Mann <mmann78@netscape.net>2016-04-16 10:48:20 +0000
commit6573dd50d4dd8bbfeccf39e3f6e71c4d99dc564d (patch)
tree3adc2d909b8c74441151485789ebdb368a58a8e1 /epan/dissectors/packet-dof.c
parent8b49546f4efa93384e4812f2024d37bc2ab9085a (diff)
DOF: fix COPY_PASTE_ERROR (CID 1358546)
Change-Id: I6bb6dfe62b21a0a7554b31fe08b474652f900d31 Reviewed-on: https://code.wireshark.org/review/14939 Reviewed-by: Mike Morrin <morrinmike@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-dof.c')
-rw-r--r--epan/dissectors/packet-dof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dof.c b/epan/dissectors/packet-dof.c
index 1481743080..06a1d2e8d7 100644
--- a/epan/dissectors/packet-dof.c
+++ b/epan/dissectors/packet-dof.c
@@ -3374,7 +3374,7 @@ static void secmode_list_update_cb(void *r, const char **err)
size = (guint32)strlen(rec->identity);
if (!VALIDHEX(rec->identity[0]) && !dof_oid_create_internal(rec->identity, &size, NULL))
{
- *err = wmem_strdup_printf(wmem_packet_scope(), "Invalid domain [must be valid OID].");
+ *err = wmem_strdup_printf(wmem_packet_scope(), "Invalid identity [must be valid OID].");
return;
}
else if (!count_hex_bytes(rec->identity))