<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 12 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-GB" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal">On my system I have the following patches related to 'providing' 124204:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">bash-3.00# patchadd -p | grep 124204<o:p></o:p></p>
<p class="MsoNormal">Patch: 120473-12 Obsoletes: 117463-05 118890-03 119985-02 120469-07 121006-02 121278-01 121294-01 122535-01 123330-01 123350-01 123356-02 123911-01 124204-04 124280-01 125795-01 Requires: 118833-36 122640-05 123839-01 Incompatibles: Packages:
 SUNWcsr SUNWcsl SUNWkvm SUNWtecla SUNWperl584core SUNWperl584usr SUNWkrbu SUNWopenssl-libraries SUNWvolu SUNWscpu SUNWzfskr SUNWzfsr SUNWsmapi SUNWzfsu SUNWcslr SUNWfmd SUNWdtrc SUNWsndmu<o:p></o:p></p>
<p class="MsoNormal">Patch: 124204-03 Obsoletes: Requires: 123839-01 122640-05 118833-25 Incompatibles: Packages: SUNWzfskr SUNWzfsr SUNWzfsu SUNWfmd<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Running chkmin on this system tells me I need to install patch 124204-04 when that obviously isn't the case:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">bash-3.00# ./chkmin 124204-04<o:p></o:p></p>
<p class="MsoNormal">124204-04<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">I've made the following addition to not overwrite a higher patch rev with a lower one in the code, which I think should address the problem but not sure if it's too simple and I've missed something:<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">bash-3.00# diff -u chkmin.orig chkmin<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">--- chkmin.orig Fri May 13 18:42:26 2011<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">+++ chkmin      Fri May 13 18:53:46 2011<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">@@ -10,6 +10,7 @@<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">   chomp; $_ =~ s/Requires:.*$//;<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">   foreach my $i (split (/[, ]+/, $_)) {<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">     next unless ($i =~ /^(\d{6})-(\d{2})$/);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">+    next if (exists $p{$1} and $p{$1} ge $2);<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">     $p{$1}=$2;<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">   }<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Courier New"">}<o:p></o:p></span></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Has anyone else come across this issue?<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal">Thanks<o:p></o:p></p>
<p class="MsoNormal">Ateeq<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Ateeq A Altaf<o:p></o:p></span></b></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Technical Consultant</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:blue">,
</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Capita Software Services</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:blue"><o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Knights Court</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:blue">,
</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Solihull Parkway</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:blue"><o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Birmingham Business Park</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:blue">
</span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">B37 7YB<br>
<br>
Office: 0870 400 5440<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="FR" style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Fax: 0870 400 5001<br>
</span><span lang="FR" style="font-size:10.0pt;font-family:"Arial","sans-serif"">email<span style="color:blue">:
</span></span><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black"><a href="mailto:firstname.surname@capita.co.uk"><span lang="FR" style="color:blue">ateeq.altaf@capita.co.uk</span></a></span><span lang="FR" style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black"><br>
</span><span lang="FR" style="color:black"> </span><span lang="FR" style="font-size:12.0pt;font-family:"Times New Roman","serif";color:black"><o:p></o:p></span></p>
<p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:"Arial","sans-serif";color:black">Part of The Capita Group plc
<a href="http://www.capita.co.uk"><span style="color:blue">www.capita.co.uk</span></a></span></b><span style="color:black"><o:p></o:p></span></p>
<p class="MsoNormal"><o:p> </o:p></p>
</div>
<br>
<hr>
<font face="Verdana" color="Black" size="1">This email and any attachment to it are confidential. Unless you are the intended recipient, you may not use, copy or disclose either the message or any information contained in the message. If you are not the intended
 recipient, you should delete this email and notify the sender immediately.<br>
<br>
Any views or opinions expressed in this email are those of the sender only, unless otherwise stated. All copyright in any Capita material in this email is reserved.<br>
<br>
All emails, incoming and outgoing, may be recorded by Capita and monitored for legitimate business purposes.<br>
<br>
Capita exclude all liability for any loss or damage arising or resulting from the receipt, use or transmission of this email to the fullest extent permitted by law.<br>
</font>
</body>
</html>