summaryrefslogtreecommitdiff
path: root/security/krb5-17/files/patch-lib-rpc-svc.c
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2009-08-28 23:35:15 +0000
committerCy Schubert <cy@FreeBSD.org>2009-08-28 23:35:15 +0000
commite7a3c62a9fc7450d03e136dee2eac1edd8e10a1b (patch)
tree823cbc819c37f58f199297400197b76040b37e91 /security/krb5-17/files/patch-lib-rpc-svc.c
parentIo_lib is a library of file reading and writing code to provide a (diff)
Welcome the new Kerberos V 1.7.
PR: 138246
Notes
Notes: svn path=/head/; revision=240488
Diffstat (limited to 'security/krb5-17/files/patch-lib-rpc-svc.c')
-rw-r--r--security/krb5-17/files/patch-lib-rpc-svc.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/security/krb5-17/files/patch-lib-rpc-svc.c b/security/krb5-17/files/patch-lib-rpc-svc.c
deleted file mode 100644
index 395039040b04..000000000000
--- a/security/krb5-17/files/patch-lib-rpc-svc.c
+++ /dev/null
@@ -1,24 +0,0 @@
-=== lib/rpc/svc.c
-==================================================================
---- lib/rpc/svc.c (revision 1666)
-+++ lib/rpc/svc.c (local)
-@@ -109,15 +109,17 @@
- if (sock < FD_SETSIZE) {
- xports[sock] = xprt;
- FD_SET(sock, &svc_fdset);
-+ if (sock > svc_maxfd)
-+ svc_maxfd = sock;
- }
- #else
- if (sock < NOFILE) {
- xports[sock] = xprt;
- svc_fds |= (1 << sock);
-+ if (sock > svc_maxfd)
-+ svc_maxfd = sock;
- }
- #endif /* def FD_SETSIZE */
-- if (sock > svc_maxfd)
-- svc_maxfd = sock;
- }
-
- /*