Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/fs/udf Make sysctl udf.verbose dependent on UDF_DEBUG in...



details:   https://anonhg.NetBSD.org/src/rev/8e0971c71a2e
branches:  trunk
changeset: 1027707:8e0971c71a2e
user:      reinoud <reinoud%NetBSD.org@localhost>
date:      Thu Dec 16 21:39:53 2021 +0000

description:
Make sysctl udf.verbose dependent on UDF_DEBUG instead of DEBUG

diffstat:

 sys/fs/udf/udf_vfsops.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r db6f7e77f5c6 -r 8e0971c71a2e sys/fs/udf/udf_vfsops.c
--- a/sys/fs/udf/udf_vfsops.c   Thu Dec 16 21:14:58 2021 +0000
+++ b/sys/fs/udf/udf_vfsops.c   Thu Dec 16 21:39:53 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_vfsops.c,v 1.82 2021/09/16 22:19:11 andvar Exp $ */
+/* $NetBSD: udf_vfsops.c,v 1.83 2021/12/16 21:39:53 reinoud Exp $ */
 
 /*
  * Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_vfsops.c,v 1.82 2021/09/16 22:19:11 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_vfsops.c,v 1.83 2021/12/16 21:39:53 reinoud Exp $");
 #endif /* not lint */
 
 
@@ -182,7 +182,7 @@
                       SYSCTL_DESCR("OSTA Universal File System"),
                       NULL, 0, NULL, 0,
                       CTL_VFS, 24, CTL_EOL);
-#ifdef DEBUG
+#ifdef UDF_DEBUG
        sysctl_createv(clog, 0, NULL, &node,
                       CTLFLAG_PERMANENT|CTLFLAG_READWRITE,
                       CTLTYPE_INT, "verbose",



Home | Main Index | Thread Index | Old Index