diff options
author | rsc <devnull@localhost> | 2005-03-18 19:02:55 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-03-18 19:02:55 +0000 |
commit | ca30274bd90f09b6d19d36b87278fdb40efddada (patch) | |
tree | 4b47e67a7d930bdc3c93a7fbb273e2cf93ad5965 /src/cmd/plumb | |
parent | c042e61ec71fcb5525461b40a5ef8ab189156135 (diff) | |
download | plan9port-ca30274bd90f09b6d19d36b87278fdb40efddada.tar.gz plan9port-ca30274bd90f09b6d19d36b87278fdb40efddada.tar.bz2 plan9port-ca30274bd90f09b6d19d36b87278fdb40efddada.zip |
add -9 for debugging
Diffstat (limited to 'src/cmd/plumb')
-rw-r--r-- | src/cmd/plumb/plumb.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cmd/plumb/plumb.c b/src/cmd/plumb/plumb.c index 56f0c7d0..beff6d15 100644 --- a/src/cmd/plumb/plumb.c +++ b/src/cmd/plumb/plumb.c @@ -2,6 +2,7 @@ #include <libc.h> #include <plumb.h> #include <thread.h> +#include <9pclient.h> char *plumbfile = nil; Plumbmsg m; @@ -49,6 +50,9 @@ threadmain(int argc, char *argv[]) m.type = "text"; m.attr = nil; ARGBEGIN{ + case '9': + chatty9pclient = 1; + break; case 'a': p = ARGF(); if(p == nil) |