summaryrefslogtreecommitdiff
path: root/vpddecode.c
diff options
context:
space:
mode:
authorJean Delvare <jdelvare@suse.de>2007-03-16 07:09:16 +0000
committerJean Delvare <jdelvare@suse.de>2007-03-16 07:09:16 +0000
commitdca897a2ccd4084f034f5e82136743bdcc94a449 (patch)
tree7f3a4a7a97594a75355122cf5e26d486dad5d192 /vpddecode.c
parent6af3150828589b165b709051d7136c2d3f8c070d (diff)
downloaddmidecode-git-dca897a2ccd4084f034f5e82136743bdcc94a449.tar.gz
Stop asking the user to report bad checksums, unaligned records and the
like. Such machines exist, too bad, we have to live with it.
Diffstat (limited to 'vpddecode.c')
-rw-r--r--vpddecode.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/vpddecode.c b/vpddecode.c
index 4e00263..b09b378 100644
--- a/vpddecode.c
+++ b/vpddecode.c
@@ -102,7 +102,7 @@ static int decode(const u8 *p)
and 345 with early BIOS) but the record is otherwise
valid. */
if(!(opt.flags & FLAG_QUIET))
- printf("Bad checksum! Please report.\n");
+ printf("# Bad checksum!\n");
}
if(opt.string!=NULL)
@@ -126,8 +126,7 @@ static int decode(const u8 *p)
if(p[5]>=0x46 && p[0x44]!=0x00)
{
- printf("%s: %u (Please report!)\n", "BIOS Revision",
- p[0x44]);
+ printf("%s: %u\n", "BIOS Revision", p[0x44]);
}
return 1;
@@ -178,7 +177,7 @@ int main(int argc, char * const argv[])
&& fp+p[5]-1<=0xFFFF)
{
if(fp%16 && !(opt.flags & FLAG_QUIET))
- printf("Unaligned address (%#x), please report!\n",
+ printf("# Unaligned address (%#x)\n",
0xf0000+fp);
if(opt.flags & FLAG_DUMP)
{