aboutsummaryrefslogtreecommitdiffstats
path: root/main/nfs-utils/musl-getservbyport.patch
blob: 6fa589c7b750ce514f101120cbd75d9e42eee864 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Musl will always return something with getservbyport so we cannot skip
ports that returns non-null.

diff --git a/utils/statd/rmtcall.c b/utils/statd/rmtcall.c
index fd576d9..d72a0bf 100644
--- a/utils/statd/rmtcall.c
+++ b/utils/statd/rmtcall.c
@@ -93,8 +93,10 @@
 					__func__);
 			break;
 		}
+#if 0
 		se = getservbyport(sin.sin_port, "udp");
 		if (se == NULL)
+#endif
 			break;
 
 		if (retries == MAX_BRP_RETRIES) {