| Summary | error in kpasswd_expect |
| Queue | Passwd |
| Queue Version | 3.0 |
| Type | Bug |
| State | Resolved |
| Priority | 1. Low |
| Owners | chuck (at) horde (dot) org |
| Requester | bailey (at) wickedknight (dot) net |
| Created | 01/22/2007 (6864 days ago) |
| Due | |
| Updated | 01/23/2007 (6863 days ago) |
| Assigned | |
| Resolved | 01/23/2007 (6863 days ago) |
| Github Issue Link | |
| Github Pull Request | |
| Milestone | |
| Patch | No |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 1. Low
Type ⇒ Bug
Summary ⇒ error in kpasswd_expect
Queue ⇒ Passwd
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
}
"Password changed."
{
close err
exit 0
}
}
close err
exit 0
Should be:
expect {
eof {
puts $err $expect_out(buffer)
close $err
exit 1
}
"Password changed."
{
close $err
exit 0
}
}
close $err
exit 0