Commit b892e479 authored by Alexander Aring's avatar Alexander Aring Committed by David Teigland

fs: dlm: fix typo in tlv prefix

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: default avatarAlexander Aring <aahringo@redhat.com>
Signed-off-by: default avatarDavid Teigland <teigland@redhat.com>
parent d921a23f
...@@ -468,7 +468,7 @@ struct dlm_rcom { ...@@ -468,7 +468,7 @@ struct dlm_rcom {
struct dlm_opt_header { struct dlm_opt_header {
uint16_t t_type; uint16_t t_type;
uint16_t t_length; uint16_t t_length;
uint32_t o_pad; uint32_t t_pad;
/* need to be 8 byte aligned */ /* need to be 8 byte aligned */
char t_value[]; char t_value[];
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment