<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="http://bugs.horde.org/themes/feed-rss.xsl" type="text/xsl"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 <channel>
  <title>error in kpasswd_expect</title>
  <pubDate>Fri, 04 Jul 2008 16:41:01 -0400</pubDate>
  <link>http://bugs.horde.org/ticket/4927</link>
  <atom:link rel="self" type="application/rss+xml" title="error in kpasswd_expect" href="http://bugs.horde.org/ticket/4927/rss" />
  <description>error in kpasswd_expect</description>

  
  
  <item>
   <title>Was looking at the kpasswd_expect script and noticed that it</title>
   <description>Was looking at the kpasswd_expect script and noticed that it won't close out the error log correctly. Forgets to reference the err variable as $err the last couple of times at the end of the script.

ie.
expect {
eof {
puts $err $expect_out(buffer)
close err
exit 1
}
&quot;Password changed.&quot;
{
close err
exit 0
}
}

close err
exit 0

Should be: 
expect {
eof {
puts $err $expect_out(buffer)
close $err
exit 1
}
&quot;Password changed.&quot;
{
close $err
exit 0
}
}

close $err
exit 0</description>
   <pubDate>Mon, 22 Jan 2007 12:30:05 -0500</pubDate>
   <link>http://bugs.horde.org/ticket/4927#t28843</link>
  </item>
  <item>
   <title>Fixed, thanks!</title>
   <description>Fixed, thanks!</description>
   <pubDate>Mon, 22 Jan 2007 23:32:24 -0500</pubDate>
   <link>http://bugs.horde.org/ticket/4927#t28863</link>
  </item>
  

 </channel>
</rss>
