72 lines
1.6 KiB
Diff
72 lines
1.6 KiB
Diff
|
diff --git a/doc/bindresvport.blacklist b/doc/bindresvport.blacklist
|
||
|
index 8904277..a7ed193 100644
|
||
|
--- a/doc/bindresvport.blacklist
|
||
|
+++ b/doc/bindresvport.blacklist
|
||
|
@@ -8,6 +8,7 @@
|
||
|
631 # cups
|
||
|
636 # ldaps
|
||
|
664 # Secure ASF, used by IPMI on some cards
|
||
|
+774 # rpasswd
|
||
|
921 # lwresd
|
||
|
993 # imaps
|
||
|
995 # pops
|
||
|
diff --git a/src/rpc_com.h b/src/rpc_com.h
|
||
|
index 10bec79..76badef 100644
|
||
|
--- a/src/rpc_com.h
|
||
|
+++ b/src/rpc_com.h
|
||
|
@@ -61,8 +61,7 @@ void __xprt_unregister_unlocked(SVCXPRT *);
|
||
|
void __xprt_set_raddr(SVCXPRT *, const struct sockaddr_storage *);
|
||
|
|
||
|
|
||
|
-SVCXPRT **__svc_xports;
|
||
|
-int __svc_maxrec;
|
||
|
+extern int __svc_maxrec;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
diff --git a/src/rpc_soc.c b/src/rpc_soc.c
|
||
|
index ac7d312..fde121d 100644
|
||
|
--- a/src/rpc_soc.c
|
||
|
+++ b/src/rpc_soc.c
|
||
|
@@ -613,6 +613,13 @@ authdes_pk_create(servername, pkey, window, syncaddr, ckey)
|
||
|
des_block *ckey; /* optional conversation key to use */
|
||
|
{ return (NULL); }
|
||
|
|
||
|
+AUTH *
|
||
|
+authdes_seccreate(const char *servername, const u_int win,
|
||
|
+ const char *timehost, const des_block *ckey)
|
||
|
+{
|
||
|
+ return (NULL);
|
||
|
+}
|
||
|
+
|
||
|
#endif
|
||
|
|
||
|
|
||
|
diff --git a/src/svc.c b/src/svc.c
|
||
|
index b59467b..6db164b 100644
|
||
|
--- a/src/svc.c
|
||
|
+++ b/src/svc.c
|
||
|
@@ -57,6 +57,9 @@
|
||
|
|
||
|
#define max(a, b) (a > b ? a : b)
|
||
|
|
||
|
+static SVCXPRT **__svc_xports;
|
||
|
+int __svc_maxrec;
|
||
|
+
|
||
|
/*
|
||
|
* The services list
|
||
|
* Each entry represents a set of procedures (an rpc program).
|
||
|
diff --git a/src/xdr_float.c b/src/xdr_float.c
|
||
|
index 26bc865..349d48f 100644
|
||
|
--- a/src/xdr_float.c
|
||
|
+++ b/src/xdr_float.c
|
||
|
@@ -83,7 +83,7 @@ static struct sgl_limits {
|
||
|
};
|
||
|
#else
|
||
|
|
||
|
-#include <bits/endian.h>
|
||
|
+#include <endian.h>
|
||
|
#define IEEEFP
|
||
|
|
||
|
#endif /* vax */
|