URI: 
       tdon't be dumb. - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit f583e2b1d85043872c67fb3059ef7f34ea4a60c7
   DIR parent 9e0b4272746716b9bf8e26f165b0f37b4fa9f4a0
  HTML Author: rsc <devnull@localhost>
       Date:   Tue,  4 Jan 2005 21:26:30 +0000
       
       don't be dumb.
       
       Diffstat:
         M src/cmd/ramfs.c                     |       9 ++-------
       
       1 file changed, 2 insertions(+), 7 deletions(-)
       ---
   DIR diff --git a/src/cmd/ramfs.c b/src/cmd/ramfs.c
       t@@ -2,8 +2,6 @@
        #include <libc.h>
        #include <fcall.h>
        
       -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
       t@@ -147,7 +145,7 @@ main(int argc, char *argv[])
        
                initfcalls();
                service = "ramfs";
       -        defmnt = "/tmp";
       +        defmnt = nil;
                ARGBEGIN{
                case 'D':
                        debug = 1;
       t@@ -159,7 +157,7 @@ main(int argc, char *argv[])
                        mfd[1] = 1;
                        break;
                case 's':
       -                defmnt = 0;
       +                defmnt = nil;
                        break;
                case 'm':
                        defmnt = ARGF();
       t@@ -175,9 +173,6 @@ main(int argc, char *argv[])
                        usage();
                }ARGEND
        
       -        if(defmnt)
       -                sysfatal("cannot mount -- not on plan 9");
       -
                if(pipe(p) < 0)
                        error("pipe failed");
                if(!stdio){