From f6bcf3d3243de4209b67024ca07252f17d4add24 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 3 May 2000 17:50:42 +0000 Subject: Added range info to the panic message to track down the bug with locktest. Jeremy. (This used to be commit 91f038356b7efa04cf4bfa5e6afd8b144b6b4ad5) --- source3/locking/posix.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'source3/locking') diff --git a/source3/locking/posix.c b/source3/locking/posix.c index df5fefdb496..c712e8c26f0 100644 --- a/source3/locking/posix.c +++ b/source3/locking/posix.c @@ -1093,8 +1093,12 @@ new: start=%.0f,size=%.0f\n", (double)ul_curr->start, (double)ul_curr->size, * This logic case should never happen. Ensure this is the * case by forcing an abort.... Remove in production. */ + pstring msg; - smb_panic("logic flaw in cases...\n"); + slprintf(msg, sizeof(msg)-1, "logic flaw in cases: ul_curr: start = %.0f, size = %.0f : \ +lock: start = %.0f, size = %.0f\n", (double)ul_curr->start, (double)ul_curr->size, (double)lock->start, (double)lock->size ); + + smb_panic(msg); } } /* end for ( ul_curr = ulhead; ul_curr;) */ } /* end for (i=0; i