Don't print Drive serial number if -S (setting shell variables) is specified.

This commit is contained in:
tsutsui 2007-10-28 10:02:08 +00:00
parent f1273d89a6
commit b682074ae4
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fdisk.c,v 1.106 2007/09/04 00:34:58 tls Exp $ */ /* $NetBSD: fdisk.c,v 1.107 2007/10/28 10:02:08 tsutsui Exp $ */
/* /*
* Mach Operating System * Mach Operating System
@ -39,7 +39,7 @@
#include <sys/cdefs.h> #include <sys/cdefs.h>
#ifndef lint #ifndef lint
__RCSID("$NetBSD: fdisk.c,v 1.106 2007/09/04 00:34:58 tls Exp $"); __RCSID("$NetBSD: fdisk.c,v 1.107 2007/10/28 10:02:08 tsutsui Exp $");
#endif /* not lint */ #endif /* not lint */
#define MBRPTYPENAMES #define MBRPTYPENAMES
@ -593,7 +593,7 @@ print_s0(int which)
} }
#endif #endif
if (mboot.mbr_dsn != 0) if (!sh_flag && mboot.mbr_dsn != 0)
printf("Drive serial number: %"PRId32" (0x%08x)\n", printf("Drive serial number: %"PRId32" (0x%08x)\n",
le32toh(mboot.mbr_dsn), le32toh(mboot.mbr_dsn),
le32toh(mboot.mbr_dsn)); le32toh(mboot.mbr_dsn));