blob: 4bdc5f2f622617955bb820134531c2ebd2bd1952 [file] [log] [blame]
Andrew Geisslerbffdb3e2020-08-21 16:13:29 -05001From 9203dec731e53fb72e1c0d62639e6e54378f66cc Mon Sep 17 00:00:00 2001
2From: Aaron Conole <aconole@redhat.com>
3Date: Mon, 3 Aug 2020 15:20:59 -0400
4Subject: [PATCH 5/9] cisco_oui: match encode handler prototypes
5
6The EXTERN_FN prototype generated requires size_t be the third parameter.
7
8Signed-off-by: Aaron Conole <aconole@redhat.com>
9---
10 vdptool_cisco_oui.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/vdptool_cisco_oui.c b/vdptool_cisco_oui.c
14index 7003521..3f88c76 100644
15--- a/vdptool_cisco_oui.c
16+++ b/vdptool_cisco_oui.c
17@@ -28,7 +28,7 @@
18 #include "lldp_util.h"
19 #include "vdp_cisco.h"
20
21-bool cisco_oui_encode_hndlr(char *dst, char *src, int len)
22+bool cisco_oui_encode_hndlr(char *dst, char *src, size_t len)
23 {
24 char *src_temp = strdup(src);
25 char *key, *data;
26--
272.28.0
28