plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit c77d5b8e1cab6c80b3b677cb0912110086a8fa12
parent 8425b514aa027459410a6cbea98799680e33e480
Author: Russ Cox <rsc@swtch.com>
Date:   Mon, 22 Feb 2010 16:55:42 -0800

import: use command line service name

R=rsc
http://codereview.appspot.com/220042

Diffstat:
Msrc/cmd/import.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cmd/import.c b/src/cmd/import.c @@ -150,7 +150,7 @@ post(char *srv) fatal("can't create pipe: %r"); /* 0 will be server end, 1 will be client end */ - if(post9pservice(p[1], "plumb", nil) < 0) + if(post9pservice(p[1], srv, nil) < 0) fatal("post9pservice plumb: %r"); close(p[1]);