commit f583e2b1d85043872c67fb3059ef7f34ea4a60c7 from: rsc date: Tue Jan 04 21:26:30 2005 UTC don't be dumb. commit - 9e0b4272746716b9bf8e26f165b0f37b4fa9f4a0 commit + f583e2b1d85043872c67fb3059ef7f34ea4a60c7 blob - a64c0a1e96c9918915f3fd74c3f80681ff3d3519 blob + 4cf5004326673d7162b87a014f70a42262cb228b --- src/cmd/ramfs.c +++ src/cmd/ramfs.c @@ -2,8 +2,6 @@ #include #include -int post9pservice(int, char*); - /* * Rather than reading /adm/users, which is a lot of work for * a toy program, we assume all groups have the form @@ -147,7 +145,7 @@ main(int argc, char *argv[]) initfcalls(); service = "ramfs"; - defmnt = "/tmp"; + defmnt = nil; ARGBEGIN{ case 'D': debug = 1; @@ -159,7 +157,7 @@ main(int argc, char *argv[]) mfd[1] = 1; break; case 's': - defmnt = 0; + defmnt = nil; break; case 'm': defmnt = ARGF(); @@ -174,9 +172,6 @@ main(int argc, char *argv[]) default: usage(); }ARGEND - - if(defmnt) - sysfatal("cannot mount -- not on plan 9"); if(pipe(p) < 0) error("pipe failed");