summaryrefslogtreecommitdiff
path: root/sys/src/cmd/sshfs.c
diff options
context:
space:
mode:
authorBurnZeZ <devnull@localhost>2018-12-10 05:18:05 +0000
committerBurnZeZ <devnull@localhost>2018-12-10 05:18:05 +0000
commite93a85710edab0e55ba792955da235083c8a0150 (patch)
tree025c02f8413cd05aaba1b057b0ca846b3db93427 /sys/src/cmd/sshfs.c
parentca851bbb5e93d6f208d967edd898e7042833889b (diff)
sshfs: add exits(nil) to threadmain
Diffstat (limited to 'sys/src/cmd/sshfs.c')
-rw-r--r--sys/src/cmd/sshfs.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/src/cmd/sshfs.c b/sys/src/cmd/sshfs.c
index f85c72dae..d0c21ec74 100644
--- a/sys/src/cmd/sshfs.c
+++ b/sys/src/cmd/sshfs.c
@@ -1414,4 +1414,6 @@ threadmain(int argc, char **argv)
passwdparse(gidtab, readfile(gidfile));
threadpostmountsrv(&sshfssrv, svc, mtpt, MCREATE | mflag);
+
+ exits(nil);
}