aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-07-27 20:42:07 +0000
committerrsc <devnull@localhost>2005-07-27 20:42:07 +0000
commit34e8254fb8cc206664fc9dcba3c7c8ae1de6ab85 (patch)
tree551d0ed12724ef9f071503374651f9974a6703a2
parentabe4cd41cb74dea0207c471cf69d8f38ff73e4f4 (diff)
downloadplan9port-34e8254fb8cc206664fc9dcba3c7c8ae1de6ab85.tar.gz
plan9port-34e8254fb8cc206664fc9dcba3c7c8ae1de6ab85.tar.bz2
plan9port-34e8254fb8cc206664fc9dcba3c7c8ae1de6ab85.zip
use correct type for NOFID (sunos)
-rw-r--r--src/cmd/9pserve.c2
-rw-r--r--src/cmd/srv.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/9pserve.c b/src/cmd/9pserve.c
index a1f6851c..3ffdf231 100644
--- 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
index 0ae458cd..ebeca328 100644
--- 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, ...);