diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-08-04 16:23:22 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-08-04 16:23:22 +0200 |
commit | d913f652f5098c372fd7c98b25ebc0e166bc525a (patch) | |
tree | 62cfb7e2ef468eb2d0cd648ce622a41640551b2a | |
parent | 53800208bd762b1ecf14b60585cb906f22db7de8 (diff) | |
download | plan9front-d913f652f5098c372fd7c98b25ebc0e166bc525a.tar.xz |
devmnt: print chanpath for unexpected reply tag
-rw-r--r-- | sys/src/9/port/devmnt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/9/port/devmnt.c b/sys/src/9/port/devmnt.c index 77a64c81a..a132b9a6e 100644 --- a/sys/src/9/port/devmnt.c +++ b/sys/src/9/port/devmnt.c @@ -1214,7 +1214,8 @@ mountmux(Mnt *m, Mntrpc *r) l = &q->list; } unlock(m); - print("unexpected reply tag %ud; type %d\n", r->reply.tag, r->reply.type); + print("mnt: unexpected reply from %s tag %ud; type %d\n", + chanpath(m->c), r->reply.tag, r->reply.type); } /* |