fs: dlm: fix typo in tlv prefix
authorAlexander Aring <aahringo@redhat.com>
Fri, 16 Jul 2021 20:22:36 +0000 (16:22 -0400)
committerDavid Teigland <teigland@redhat.com>
Mon, 19 Jul 2021 16:53:43 +0000 (11:53 -0500)
This patch fixes a small typo in a unused struct field. It should named
be t_pad instead of o_pad. Came over this as I updated wireshark
dissector.

Signed-off-by: Alexander Aring <aahringo@redhat.com>
Signed-off-by: David Teigland <teigland@redhat.com>
fs/dlm/dlm_internal.h

index 91d1ca3a121a42fbc5ced1767613ece1299f51d0..5f57538b5d4504f8338ebb8bdf0d9b6c0413c5a9 100644 (file)
@@ -468,7 +468,7 @@ struct dlm_rcom {
 struct dlm_opt_header {
        uint16_t        t_type;
        uint16_t        t_length;
-       uint32_t        o_pad;
+       uint32_t        t_pad;
        /* need to be 8 byte aligned */
        char            t_value[];
 };