about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2005-11-03 23:30:51 +0000
committerRoland McGrath <roland@gnu.org>2005-11-03 23:30:51 +0000
commit77c4d1156f73444f4b1d897f423544869c880eae (patch)
tree6c5469e4fd0d61927530364835424b6d8002b127
parentb81920fea759c7b7ce1bb01ff926d4fd7679f79a (diff)
downloadglibc-77c4d1156f73444f4b1d897f423544869c880eae.tar.gz
glibc-77c4d1156f73444f4b1d897f423544869c880eae.tar.xz
glibc-77c4d1156f73444f4b1d897f423544869c880eae.zip
* sunrpc/svc.c (svc_getreqset): Use ffsl instead of ffs on fd_mask,
	make sure constant is long.
-rw-r--r--ChangeLog3
-rw-r--r--sunrpc/svc.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 90129ac276..7ece16c109 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
 2005-11-03  Roland McGrath  <roland@redhat.com>
 
 	[BZ #1548]
-	* sunrpc/svc.c (svc_getreqset): Use ffsl instead of ffs on fd_mask.
+	* sunrpc/svc.c (svc_getreqset): Use ffsl instead of ffs on fd_mask,
+	make sure constant is long.
 	From Jay Lan <jlan@engr.sgi.com>.
 
 2005-11-03  Ulrich Drepper  <drepper@redhat.com>
diff --git a/sunrpc/svc.c b/sunrpc/svc.c
index 4e8395945f..53f628e699 100644
--- a/sunrpc/svc.c
+++ b/sunrpc/svc.c
@@ -372,7 +372,7 @@ svc_getreqset (fd_set *readfds)
     setsize = FD_SETSIZE;
   maskp = readfds->fds_bits;
   for (sock = 0; sock < setsize; sock += NFDBITS)
-    for (mask = *maskp++; (bit = ffsl (mask)); mask ^= (1 << (bit - 1)))
+    for (mask = *maskp++; (bit = ffsl (mask)); mask ^= (1L << (bit - 1)))
       INTUSE(svc_getreq_common) (sock + bit - 1);
 }
 INTDEF (svc_getreqset)