summaryrefslogtreecommitdiff
path: root/lib/lldp/lldpd.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2015-02-22 16:47:01 -0800
committerBen Pfaff <blp@nicira.com>2015-03-03 16:22:33 -0800
commite87a8e67fa75483f9de804370a36ebc01f85ddc9 (patch)
tree82dda4b93d6a73887e748ddd7a5f86b691cfb14d /lib/lldp/lldpd.h
parent3622191996edd0daa5c4ac3f4c5ffaafd59aa8e8 (diff)
downloadopenvswitch-e87a8e67fa75483f9de804370a36ebc01f85ddc9.tar.gz
lldpd: Fix use of list of struct lldpd_chassis.
A list of some type should have type "struct ovs_list", not some other type that encapsulates it. Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'lib/lldp/lldpd.h')
-rw-r--r--lib/lldp/lldpd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lldp/lldpd.h b/lib/lldp/lldpd.h
index 8228344ed..87c5d643d 100644
--- a/lib/lldp/lldpd.h
+++ b/lib/lldp/lldpd.h
@@ -84,7 +84,7 @@ struct lldpd {
struct protocol *g_protocols;
int g_lastrid;
- struct lldpd_chassis g_chassis;
+ struct ovs_list g_chassis; /* Contains "struct lldp_chassis". */
struct lldpd_hardware g_hardware;
};