turn pwctl_debug to 0
This commit is contained in:
parent
0acf15b497
commit
2746e887bc
|
@ -1,4 +1,4 @@
|
||||||
/* $NetBSD: pwctl.c,v 1.6 2001/07/31 10:37:49 sato Exp $ */
|
/* $NetBSD: pwctl.c,v 1.7 2001/08/02 09:47:18 sato Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1999-2001
|
* Copyright (c) 1999-2001
|
||||||
|
@ -50,9 +50,12 @@
|
||||||
|
|
||||||
#include "locators.h"
|
#include "locators.h"
|
||||||
|
|
||||||
#define PWCTLVRGIUDEBUG
|
#define PWCTLDEBUG
|
||||||
#ifdef PWCTLVRGIUDEBUG
|
#ifndef PWCTLDEBUG_CONF
|
||||||
int pwctl_debug = 1;
|
#define PWCTLDEBUG_CONF 0
|
||||||
|
#endif
|
||||||
|
#ifdef PWCTLDEBUG
|
||||||
|
int pwctl_debug = PWCTLDEBUG_CONF;
|
||||||
#define DPRINTF(arg) if (pwctl_debug) printf arg;
|
#define DPRINTF(arg) if (pwctl_debug) printf arg;
|
||||||
#define VPRINTF(arg) if (bootverbose) printf arg;
|
#define VPRINTF(arg) if (bootverbose) printf arg;
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue