diff options
Diffstat (limited to 'meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/018-remove-tcp-wrappers.patch')
-rw-r--r-- | meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/018-remove-tcp-wrappers.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/018-remove-tcp-wrappers.patch b/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/018-remove-tcp-wrappers.patch deleted file mode 100644 index 1b407e4533..0000000000 --- a/meta/recipes-devtools/unfs-server/unfs-server-2.1+2.2beta47/018-remove-tcp-wrappers.patch +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | Upstream-Status: Inappropriate [other] | ||
2 | Upstream is not making further releases of this software. | ||
3 | |||
4 | Signed-off-by: Scott Garman <scott.a.garman@intel.com> | ||
5 | |||
6 | # Remove the requirement to link with libwrap | ||
7 | # Patch origin: Wind River | ||
8 | |||
9 | Index: nfs-server-2.2beta47/haccess.c | ||
10 | =================================================================== | ||
11 | --- nfs-server-2.2beta47.orig/haccess.c 1999-04-08 08:47:19.000000000 -0400 | ||
12 | +++ nfs-server-2.2beta47/haccess.c 2006-08-07 17:05:31.868221639 -0400 | ||
13 | @@ -79,8 +79,12 @@ | ||
14 | clients[hash] = hp; | ||
15 | |||
16 | hp->clnt_addr = addr; | ||
17 | +#ifdef USE_TCP_WRAPPERS | ||
18 | hp->status = hosts_ctl(rpcprog, "unknown", | ||
19 | inet_ntoa(addr), "root"); | ||
20 | +#else | ||
21 | + hp->status = 1; | ||
22 | +#endif | ||
23 | nrhosts++; | ||
24 | } | ||
25 | |||