fontsrv: add half-documented -s option

This commit is contained in:
Russ Cox 2009-07-08 22:23:58 -07:00
parent 222094401f
commit 76f90e5145
2 changed files with 12 additions and 4 deletions

View file

@ -7,6 +7,10 @@ fontsrv \- file system access to host fonts
.B -m
.I mtpt
]
[
.B -s
.I srvname
]
.PP
.B fontsrv
.B -p

View file

@ -483,9 +483,10 @@ fontcmp(const void *va, const void *vb)
void
main(int argc, char **argv)
{
char *mtpt;
char *mtpt, *srvname;
mtpt = unsharp("#9/font/mnt");
mtpt = nil;
srvname = "font";
ARGBEGIN{
case 'D':
@ -497,6 +498,9 @@ main(int argc, char **argv)
case 'm':
mtpt = EARGF(usage());
break;
case 's':
srvname = EARGF(usage());
break;
case 'p':
pflag++;
break;
@ -536,7 +540,7 @@ main(int argc, char **argv)
sysfatal("mountpoint %s does not exist", mtpt);
xsrv.foreground = 1;
threadpostmountsrv(&xsrv, "font", mtpt, 0);
threadpostmountsrv(&xsrv, srvname, mtpt, 0);
}
/*