post9pservice: add extra arg to unmodified calls

This commit is contained in:
Russ Cox 2008-04-17 16:13:04 -04:00
parent be3e351464
commit 7db5826d1b
3 changed files with 3 additions and 3 deletions

View file

@ -142,7 +142,7 @@ main(int argc, char *argv[])
break;
default:
close(p[0]); /* don't deadlock if child fails */
if(post9pservice(p[1], defmnt) < 0) {
if(post9pservice(p[1], defmnt, nil) < 0) {
sprint(buf, "post on `%s' failed", defmnt);
error(buf);
}