Skip to content

Commit 1d51e6c

Browse files
Fix against changes in master
1 parent 167b440 commit 1d51e6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/session/sessionimpl/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ impl MuxSessionImpl {
145145
// only addresses messages intended for this channel
146146
match msg.frame {
147147
MessageFrame::Rdispatch(d) => Ok(d),
148-
MessageFrame::Rerr(reason) => Err(io::Error::new(ErrorKind::Other, reason)),
148+
MessageFrame::Rerr(rerr) => Err(io::Error::new(ErrorKind::Other, rerr.msg)),
149149

150150
// the rest of these are unexpected messages at this point
151151
other => {

0 commit comments

Comments
 (0)