blob: a11a97ebded31369b672ff005d95b2cd8e0cb6e2 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From 8f299df4dd1ca857e34859c377a29b183c630961 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 21 Sep 2017 13:05:03 -0700
4Subject: [PATCH] l2tp_api.c: include rpc/clnt.h for 'resultproc_t'
5
6Fixes
7
8| /mnt/a/oe/build/tmp/work/mips32r2-bec-linux-musl/openl2tp/1.8-r0/recipe-sysroot/usr/include/tirpc/rpc/pmap_clnt.h:81:12: error: unknown type name 'resultproc_t'; did you mean 'rpcproc_t'? | resultproc_t); | ^~~~~~~~~~~~
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11---
12Upstream-Status: Pending
13
14 l2tp_api.c | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/l2tp_api.c b/l2tp_api.c
18index f0946fd..f77881c 100644
19--- a/l2tp_api.c
20+++ b/l2tp_api.c
21@@ -26,6 +26,7 @@
22 #include <sys/types.h>
23 #include <rpc/types.h>
24 #include <rpc/xdr.h>
25+#include <rpc/clnt.h>
26 #include <rpc/pmap_clnt.h>
27 //#include <netinet/in.h>
28
29--
302.14.1
31