summaryrefslogtreecommitdiff
path: root/src/systemd
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2015-10-08 15:26:43 +0200
committerBeniamino Galvani <bgalvani@redhat.com>2015-10-08 15:48:33 +0200
commitadf88a70f0d90ee9b7088375a0bc3a31503eb79e (patch)
tree32b8c2018ca80b78d31071b47f920eb727877d64 /src/systemd
parent4d860b20a19031c94f4829172f5e312450c0ae58 (diff)
lldp: rename publicly visible structure
Rename struct 'tlv_packet' to 'sd_lldp_packet' and struct 'tlv_section' to 'sd_lldp_section' since the former is referenced in public header sd-lldp.h. Signed-off-by: Beniamino Galvani <bgalvani@redhat.com>
Diffstat (limited to 'src/systemd')
-rw-r--r--src/systemd/sd-lldp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemd/sd-lldp.h b/src/systemd/sd-lldp.h
index 308d42c6e9..30d9dedf2c 100644
--- a/src/systemd/sd-lldp.h
+++ b/src/systemd/sd-lldp.h
@@ -35,7 +35,7 @@ enum {
};
typedef struct sd_lldp sd_lldp;
-typedef struct tlv_packet sd_lldp_packet;
+typedef struct sd_lldp_packet sd_lldp_packet;
typedef void (*sd_lldp_cb_t)(sd_lldp *lldp, int event, void *userdata);