aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-uftp.c
diff options
context:
space:
mode:
authorChuck Craft <bubbasnmp@gmail.com>2021-02-09 22:48:32 -0600
committerAndersBroman <a.broman58@gmail.com>2021-02-10 06:17:30 +0000
commit02cb167ccea5c2cfee5f209801f3b0910df8bbd2 (patch)
treefee2580b90a3d3cad76ebcfbf643cb680545ca8f /epan/dissectors/packet-uftp.c
parentf0c54cc48013a61e4a4477a24e3c2501cec30ec1 (diff)
uftp: Fix typo in #define for default port
The change in 2eb7b05b had a typo for the UDP port #define.
Diffstat (limited to 'epan/dissectors/packet-uftp.c')
-rw-r--r--epan/dissectors/packet-uftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-uftp.c b/epan/dissectors/packet-uftp.c
index f0402d5e1e..a1a89b82be 100644
--- a/epan/dissectors/packet-uftp.c
+++ b/epan/dissectors/packet-uftp.c
@@ -126,7 +126,7 @@ void proto_register_uftp(void);
void proto_reg_handoff_uftp(void);
static int proto_uftp = -1;
-#define UTFP_PORT 1044 /* Not IANA registered */
+#define UFTP_PORT 1044 /* Not IANA registered */
/* main header and common fields */
static int hf_uftp_version = -1;
@@ -2218,7 +2218,7 @@ void proto_reg_handoff_uftp(void)
uftp4_handle = find_dissector("uftp4");
uftp5_handle = find_dissector("uftp5");
uftp_handle = create_dissector_handle(dissect_uftp, proto_uftp);
- dissector_add_uint_with_preference("udp.port", UTFP_PORT, uftp_handle);
+ dissector_add_uint_with_preference("udp.port", UFTP_PORT, uftp_handle);
}
/*