diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-18 18:51:00 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-18 18:51:00 +0000 |
commit | 2525d04dc2825b5c817a678b3f85884013343345 (patch) | |
tree | e6316ef2ec216761c2d40da6dabef6740016379e /sys | |
parent | aa5ec6e986b2282d373774bb1dfbc0d8d4bd2b6f (diff) |
I am sick and tired of bug reports LACKING INFORMATION.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/ddb/db_trap.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/sys/ddb/db_trap.c b/sys/ddb/db_trap.c index 029f564d42f..fb828af96a7 100644 --- a/sys/ddb/db_trap.c +++ b/sys/ddb/db_trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_trap.c,v 1.6 2001/04/05 20:05:29 art Exp $ */ +/* $OpenBSD: db_trap.c,v 1.7 2001/08/18 18:50:59 art Exp $ */ /* $NetBSD: db_trap.c,v 1.9 1996/02/05 01:57:18 christos Exp $ */ /* @@ -76,8 +76,13 @@ db_trap(type, code) if (panicstr != NULL) { if (db_print_position() != 0) db_printf("\n"); - db_printf("Run at least 'trace' and 'ps' and include " - "the output when reporting this panic.\n"); + db_printf("\n\n**********************************\n"); + db_printf("RUN AT LEAST 'trace' AND 'ps' AND INCLUDE " + "THE OUTPUT WHEN REPORTING THIS PANIC!\n"); + db_printf("DO NOT EVEN BOTHER REPORTING THIS WITHOUT " + "INCLUDING THAT INFORMATION!\n"); + db_printf("DON'T WASTE OUR TIME!\n"); + db_printf("**********************************\n\n"); } db_command_loop(); |