From 9485ca85d36b7449bc4ad4895d2a96ec95ea7537 Mon Sep 17 00:00:00 2001 From: Chas Williams Date: Mon, 8 Aug 2005 15:58:32 +0000 Subject: [PATCH] linux-panic-20050727 FIXES 20392 just call panic() on linux ==================== This delta was composed from multiple commits as part of the CVS->Git migration. The checkin message with each commit was inconsistent. The following are the additional commit messages. ==================== FIXES 20392 call BUG() instead --- src/rx/rx_kcommon.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rx/rx_kcommon.c b/src/rx/rx_kcommon.c index 34c7c0379..b469bac68 100644 --- a/src/rx/rx_kcommon.c +++ b/src/rx/rx_kcommon.c @@ -127,8 +127,8 @@ osi_Panic(msg, a1, a2, a3) msg = "Unknown AFS panic"; printf(msg, a1, a2, a3); -#ifdef AFS_LINUX20_ENV - *((char *)0xffffffff) = 42; +#ifdef AFS_LINUX24_ENV + BUG(); #else panic(msg); #endif -- 2.39.5