summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/nis/yp-tools/alignment-cheat.patch
blob: be9b62b8cc74e18cc720eae396c7315e91ebcd5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
yp-tools: avoid fatal cast warning

The way casting is done, we will get a fatal alignment warning on some
architectures.  This patch cheats our way around this.

We also eliminate an unused constant which causes a fatal warning.

Upstream-status: Inappropriate [code does not exist in version 4.x]

Signed-off-by: Joe Slater <jslater@windriver.com>

--- a/lib/do_ypcall.c
+++ b/lib/do_ypcall.c
@@ -44,7 +44,6 @@ struct dom_binding
 typedef struct dom_binding dom_binding;
 
 static const struct timeval RPCTIMEOUT = {25, 0};
-static const struct timeval UDPTIMEOUT = {5, 0};
 static int const MAXTRIES = 2;
 static pthread_mutex_t ypbindlist_lock = PTHREAD_MUTEX_INITIALIZER;
 static dom_binding *ypbindlist = NULL;
@@ -381,7 +380,7 @@ __ypclnt_call (u_long prog, xdrproc_t xa
 
 int
 do_ypcall (const char *domain, u_long prog, xdrproc_t xargs,
-	   caddr_t req, xdrproc_t xres, caddr_t resp)
+	   caddr_t req, xdrproc_t xres, void *resp)
 {
   dom_binding *ydb;
   int status;
@@ -450,7 +449,7 @@ do_ypcall (const char *domain, u_long pr
 /* Like do_ypcall, but translate the status value if necessary.  */
 int
 do_ypcall_tr (const char *domain, u_long prog, xdrproc_t xargs,
-	      caddr_t req, xdrproc_t xres, caddr_t resp)
+	      caddr_t req, xdrproc_t xres, void *resp)
 {
   int status = do_ypcall (domain, prog, xargs, req, xres, resp);
   if (status == YPERR_SUCCESS)
--- a/lib/internal.h
+++ b/lib/internal.h
@@ -17,8 +17,8 @@
 #define _INTERNAL_H_
 
 extern int do_ypcall (const char *domain, u_long prog, xdrproc_t xargs,
-		      caddr_t req, xdrproc_t xres, caddr_t resp);
+		      caddr_t req, xdrproc_t xres, void *resp);
 extern int do_ypcall_tr (const char *domain, u_long prog, xdrproc_t xargs,
-			 caddr_t req, xdrproc_t xres, caddr_t resp);
+			 caddr_t req, xdrproc_t xres, void *resp);
 extern int yp_maplist (const char *, struct ypmaplist **);
 #endif