- LP64 and other portability issues - Find the correct <kafs.h> in order to get the right prototype for kafs_settoken_rxkad. - Find the correct <com_err.h> - Add support for -DMULTIPROCESSOR and other kernel compile options Bump PKGREVISION.
15 lines
442 B
Text
15 lines
442 B
Text
$NetBSD: patch-bg,v 1.4 2005/03/25 17:40:25 wennmach Exp $
|
|
|
|
Fix LP64 issue.
|
|
|
|
--- rx/rx_multi.c.orig 2005-03-22 15:53:00.000000000 +0100
|
|
+++ rx/rx_multi.c 2005-03-22 15:53:33.000000000 +0100
|
|
@@ -51,7 +51,7 @@
|
|
struct rx_call *call;
|
|
|
|
call = mh->calls[i] = rx_NewCall(conns[i]);
|
|
- rx_SetArrivalProc(call, multi_Ready, (void *) mh, (void *) i);
|
|
+ rx_SetArrivalProc(call, multi_Ready, (void *) mh, (void *)(long) i);
|
|
}
|
|
return mh;
|
|
}
|