isobus-vt: fix typo

successfull -> successful

Change-Id: I1617a087ababcaeb5ae5e5063354083260995496
Reviewed-on: https://code.wireshark.org/review/33272
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2019-05-20 11:58:40 +00:00 committed by Anders Broman
parent f556a44bc7
commit de5fd1634b
1 changed files with 2 additions and 2 deletions

View File

@ -3577,11 +3577,11 @@ dissect_vt(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, enum vt_directio
{
if(command == MASK_LOCK)
{
col_append_fstr(pinfo->cinfo, COL_INFO, "Locking successfull ");
col_append_fstr(pinfo->cinfo, COL_INFO, "Locking successful ");
}
else if(command == MASK_UNLOCK)
{
col_append_fstr(pinfo->cinfo, COL_INFO, "Unlocking successfull ");
col_append_fstr(pinfo->cinfo, COL_INFO, "Unlocking successful ");
}
}
}