summaryrefslogtreecommitdiff
path: root/mbone/sdr/patches/patch-ad
blob: ad8bc96c5d7910f7219a32b597d9ce9dbb4fa9e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$NetBSD: patch-ad,v 1.3 1998/09/13 18:02:10 garbled Exp $
--- src/sd_listen.c.orig	Sun Sep 13 10:34:47 1998
+++ src/sd_listen.c	Sun Sep 13 10:37:01 1998
@@ -316,10 +316,10 @@
 
 	if (strncmp(k1, "k=", 2)==0)
 	  {
-	    if ((u_int)k2>=(u_int)k1+2)
+	    if ((uintptr_t)k2>=(uintptr_t)k1+2)
 	      {
-		memcpy(key, k1+2, (u_int)k2-((u_int)k1+1));
-		key[(u_int)k2-((u_int)k1+1)]='\0';
+		memcpy(key, k1+2, (uintptr_t)k2-((uintptr_t)k1+1));
+		key[(uintptr_t)k2-((uintptr_t)k1+1)]='\0';
 	      }
 	    else
 	      {
@@ -648,7 +648,7 @@
     struct timeval tv;
     unsigned long src, hfrom;
     char *data;
-    int ix = rfd2sock[PTOI(fd)];
+    intptr_t ix = rfd2sock[PTOI(fd)];
 
     fromlen=sizeof(struct sockaddr);