OpenBSD: curproc has moved in OpenBSD 4.8

With OpenBSD 4.8, curproc has moved from h/proc.h to
h/systm.h. Fix rx_event.c to reflect this change.

Change-Id: I38d4676d445bfafa47f2ae973d789d0b9f6a687a
Reviewed-on: http://gerrit.openafs.org/3749
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
Antoine Verheijen 2011-01-24 00:17:46 -07:00 committed by Derrick Brashear
parent be0e9fb703
commit e4660dd8cf

View File

@ -33,7 +33,11 @@
extern void *osi_Alloc();
# endif
# if defined(AFS_OBSD_ENV)
# include "h/proc.h"
# if defined(AFS_OBSD48_ENV)
# include "h/systm.h"
# else
# include "h/proc.h"
# endif
# endif
#else /* KERNEL */
# include <roken.h>