tuse correct type for NOFID (sunos) - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 34e8254fb8cc206664fc9dcba3c7c8ae1de6ab85
 (DIR) parent abe4cd41cb74dea0207c471cf69d8f38ff73e4f4
 (HTM) Author: rsc <devnull@localhost>
       Date:   Wed, 27 Jul 2005 20:42:07 +0000
       
       use correct type for NOFID (sunos)
       
       Diffstat:
         M src/cmd/9pserve.c                   |       2 +-
         M src/cmd/srv.c                       |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c
       t@@ -79,7 +79,7 @@ Queue *inq;
        int verbose = 0;
        int logging = 0;
        int msize = 8192;
       -int xafid = NOFID;
       +u32int xafid = NOFID;
        int attached;
        int versioned;
        
 (DIR) diff --git a/src/cmd/srv.c b/src/cmd/srv.c
       t@@ -10,7 +10,7 @@ char *keypattern = "";
        int fd;
        int msize;
        int doauth;
       -int afid = NOFID;
       +u32int afid = NOFID;
        extern char *post9parg;        /* clumsy hack */
        void xauth(void);
        AuthInfo* xauth_proxy(AuthGetkey *getkey, char *fmt, ...);