blob: 2e8a81160988962e01931c0c2c52f5a2d42c56ce [file] [log] [blame]
From d64701a8932f53511485f23b8acfb9c564b72297 Mon Sep 17 00:00:00 2001
From: Matt Ploetz <maploetz@us.ibm.com>
Date: Wed, 15 Apr 2015 14:51:11 -0500
Subject: [PATCH] Fix for firestone vpd cache
Change-Id: Ica112e3d5d131b0171b7b54d85a3810582a08e27
---
src/usr/vpd/ipvpd.C | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/usr/vpd/ipvpd.C b/src/usr/vpd/ipvpd.C
index b409c50..3738c61 100644
--- a/src/usr/vpd/ipvpd.C
+++ b/src/usr/vpd/ipvpd.C
@@ -1333,7 +1333,7 @@ IpVpdFacade::getRecordListSeeprom ( std::list<TocPtRecord> & o_recList,
offset = le16toh( toc_rec->record_offset ) + 1; // skip 'large resource'
// Read the PT keyword(s) from the VTOC
- for (uint16_t index = 0; index < 2; ++index)
+ for (uint16_t index = 0; index < 3; ++index)
{
pt_len = sizeof(l_buffer);
err = retrieveKeyword( "PT",
--
1.8.2.2