diff options
author | Russ Cox <rsc@swtch.com> | 2008-04-17 16:13:04 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-04-17 16:13:04 -0400 |
commit | 7db5826d1b0b3bf01d6774027eece153de88dbfb (patch) | |
tree | 46c36ab758468ebf0636386da95eaf5f074dcfd9 /src/cmd/plumb | |
parent | be3e351464e9c656eae8644727060f3d458a2984 (diff) | |
download | plan9port-7db5826d1b0b3bf01d6774027eece153de88dbfb.tar.gz plan9port-7db5826d1b0b3bf01d6774027eece153de88dbfb.tar.bz2 plan9port-7db5826d1b0b3bf01d6774027eece153de88dbfb.zip |
post9pservice: add extra arg to unmodified calls
Diffstat (limited to 'src/cmd/plumb')
-rw-r--r-- | src/cmd/plumb/fsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/plumb/fsys.c b/src/cmd/plumb/fsys.c index 4ae99afd..8b9188be 100644 --- a/src/cmd/plumb/fsys.c +++ b/src/cmd/plumb/fsys.c @@ -196,7 +196,7 @@ startfsys(void) error("can't create pipe: %r"); /* 0 will be server end, 1 will be client end */ srvfd = p[0]; - if(post9pservice(p[1], "plumb") < 0) + if(post9pservice(p[1], "plumb", nil) < 0) sysfatal("post9pservice plumb: %r"); close(p[1]); proccreate(fsysproc, nil, Stack); |