Module Name: src Committed By: martin Date: Sun Dec 15 12:09:55 UTC 2019
Modified Files: src/usr.sbin/sysinst: disklabel.c Log Message: Do not show disklabel command invocation by default (only if there are errors). To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/usr.sbin/sysinst/disklabel.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/usr.sbin/sysinst/disklabel.c diff -u src/usr.sbin/sysinst/disklabel.c:1.26 src/usr.sbin/sysinst/disklabel.c:1.27 --- src/usr.sbin/sysinst/disklabel.c:1.26 Sun Dec 15 12:01:05 2019 +++ src/usr.sbin/sysinst/disklabel.c Sun Dec 15 12:09:55 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: disklabel.c,v 1.26 2019/12/15 12:01:05 martin Exp $ */ +/* $NetBSD: disklabel.c,v 1.27 2019/12/15 12:09:55 martin Exp $ */ /* * Copyright 2018 The NetBSD Foundation, Inc. @@ -415,7 +415,7 @@ disklabel_write_to_disk(struct disk_part */ #ifdef DISKLABEL_CMD /* disklabel the disk */ - rv = run_program(RUN_DISPLAY, "%s -f %s %s '%s' '%s'", + rv = run_program(0, "%s -f %s %s '%s' '%s'", DISKLABEL_CMD, fname, disk, disktype, packname); #endif