diff options
author | glebius <glebius@FreeBSD.org> | 2005-09-02 19:34:13 +0000 |
---|---|---|
committer | glebius <glebius@FreeBSD.org> | 2005-09-02 19:34:13 +0000 |
commit | fd1055bc2e0cada502990d80485741cba0746f55 (patch) | |
tree | c7d1a3af7e6e338a00f8f49fa392b6bf5d369e41 | |
parent | 5147fb59678fdc458dd06b8ee8e25671557cda4d (diff) | |
download | FreeBSD-src-fd1055bc2e0cada502990d80485741cba0746f55.zip FreeBSD-src-fd1055bc2e0cada502990d80485741cba0746f55.tar.gz |
Change default KTR_COMPILE from KTR_GEN to KTR_ALL, to match with
manual page.
Reviewed by: jhb, pjd
-rw-r--r-- | sys/sys/ktr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/ktr.h b/sys/sys/ktr.h index a39d2eb..6e074c4 100644 --- a/sys/sys/ktr.h +++ b/sys/sys/ktr.h @@ -87,7 +87,7 @@ /* Trace classes to compile in */ #ifndef KTR_COMPILE -#define KTR_COMPILE (KTR_GEN) +#define KTR_COMPILE (KTR_ALL) #endif /* Trace classes that can not be used with KTR_ALQ */ |