timport: use command line service name - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c77d5b8e1cab6c80b3b677cb0912110086a8fa12
(DIR) parent 8425b514aa027459410a6cbea98799680e33e480
(HTM) 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:
M src/cmd/import.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/cmd/import.c b/src/cmd/import.c
t@@ -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]);