From 27d68f904f2f152dfef692f7fffca366981c8f57 Mon Sep 17 00:00:00 2001 From: David Malone Date: Sun, 23 Nov 2008 21:05:22 +0000 Subject: [PATCH] It's possible that the dump device has gone away after it was configured, change the message to let people know this is a possibility. I've slightly changed the message from the one submitted by Pekka to keep the printf on one line. Submitted by: Pekka Savola --- sys/kern/kern_shutdown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/kern_shutdown.c b/sys/kern/kern_shutdown.c index 238abc7198d6..157da532049a 100644 --- a/sys/kern/kern_shutdown.c +++ b/sys/kern/kern_shutdown.c @@ -238,7 +238,7 @@ doadump(void) * Give them a clue as to why they can't dump. */ if (dumper.dumper == NULL) { - printf("Cannot dump. No dump device defined.\n"); + printf("Cannot dump. Device not defined or unavailable.\n"); return; }