Module Name: src
Committed By: martin
Date: Sun Dec 15 12:50:39 UTC 2019
Modified Files:
src/sys/arch/pmax/pmax: disksubr.c
Log Message:
Disable (pretty useless and obscure) message when checking for Ultrix
comaptible labels.
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src/sys/arch/pmax/pmax/disksubr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/pmax/pmax/disksubr.c
diff -u src/sys/arch/pmax/pmax/disksubr.c:1.55 src/sys/arch/pmax/pmax/disksubr.c:1.56
--- src/sys/arch/pmax/pmax/disksubr.c:1.55 Wed Apr 3 22:10:51 2019
+++ src/sys/arch/pmax/pmax/disksubr.c Sun Dec 15 12:50:39 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: disksubr.c,v 1.55 2019/04/03 22:10:51 christos Exp $ */
+/* $NetBSD: disksubr.c,v 1.56 2019/12/15 12:50:39 martin Exp $ */
/*
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.55 2019/04/03 22:10:51 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: disksubr.c,v 1.56 2019/12/15 12:50:39 martin Exp $");
#include "opt_compat_ultrix.h"
@@ -146,7 +146,9 @@ compat_label(dev_t dev, void (*strat)(st
int part;
if (dlp->magic != DEC_LABEL_MAGIC) {
+#if 0
printf("label: %x\n",dlp->magic);
+#endif
msg = ((msg != NULL) ? msg: "no disk label");
goto done;
}