diff options
author | 1999-08-14 04:47:47 +0000 | |
---|---|---|
committer | 1999-08-14 04:47:47 +0000 | |
commit | 7ee33840d694239371e1ddef1988378fd08a87ae (patch) | |
tree | 2ba0c7fd64a89ced214ecca1b2c130f3b09f8e8d | |
parent | update (diff) | |
download | wireguard-openbsd-7ee33840d694239371e1ddef1988378fd08a87ae.tar.xz wireguard-openbsd-7ee33840d694239371e1ddef1988378fd08a87ae.zip |
debugging off by default. ok mickey@
-rw-r--r-- | sys/arch/hppa/stand/boot/conf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/stand/boot/conf.c b/sys/arch/hppa/stand/boot/conf.c index 33fe102add3..d80dc1d5f76 100644 --- a/sys/arch/hppa/stand/boot/conf.c +++ b/sys/arch/hppa/stand/boot/conf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.c,v 1.10 1999/06/22 20:39:05 mickey Exp $ */ +/* $OpenBSD: conf.c,v 1.11 1999/08/14 04:47:47 todd Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -38,7 +38,7 @@ #include <dev/cons.h> const char version[] = "0.5"; -int debug = 1; +int debug = 0; const struct x_sw execsw[] = { { "elf", elf_probe, elf_load/*, elf_ldsym */ }, |