commit 34e8254fb8cc206664fc9dcba3c7c8ae1de6ab85
parent abe4cd41cb74dea0207c471cf69d8f38ff73e4f4
Author: rsc <devnull@localhost>
Date: Wed, 27 Jul 2005 20:42:07 +0000
use correct type for NOFID (sunos)
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c
@@ -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;
diff --git a/src/cmd/srv.c b/src/cmd/srv.c
@@ -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, ...);