Skip to content

Commit

Permalink
Fix against changes in master
Browse files Browse the repository at this point in the history
  • Loading branch information
bryce-anderson committed Apr 9, 2016
1 parent 167b440 commit 859679b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/session/sessionimpl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ impl MuxSessionImpl {
// only addresses messages intended for this channel
match msg.frame {
MessageFrame::Rdispatch(d) => Ok(d),
MessageFrame::Rerr(reason) => Err(io::Error::new(ErrorKind::Other, reason)),
MessageFrame::Rerr(rerr) => Err(io::Error::new(ErrorKind::Other, rerr.msg)),

// the rest of these are unexpected messages at this point
other => {
Expand Down

0 comments on commit 859679b

Please sign in to comment.