diff options
author | Tim Newsham <tim.newsham@gmail.com> | 2009-08-20 11:37:24 -0400 |
---|---|---|
committer | Tim Newsham <tim.newsham@gmail.com> | 2009-08-20 11:37:24 -0400 |
commit | 8ff457f56db9f94f4baf68f53d87e791584d1dfe (patch) | |
tree | 4b3b025452291e4f258e06281a52479f0a3fac7b /include | |
parent | e7c5e5ed94e02e969d45d8ab74876cac53694195 (diff) | |
download | plan9port-8ff457f56db9f94f4baf68f53d87e791584d1dfe.tar.gz plan9port-8ff457f56db9f94f4baf68f53d87e791584d1dfe.tar.bz2 plan9port-8ff457f56db9f94f4baf68f53d87e791584d1dfe.zip |
lib9: dotu fixes in convS2M, convM2S
http://codereview.appspot.com/109049
Diffstat (limited to 'include')
-rw-r--r-- | include/fcall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/fcall.h b/include/fcall.h index a5dae337..1e32b339 100644 --- a/include/fcall.h +++ b/include/fcall.h @@ -44,6 +44,7 @@ struct Fcall /* 9P2000.u extensions */ int errornum; /* Rerror */ + int uidnum; /* Tattach, Tauth */ char *extension; /* Tcreate */ } Fcall; @@ -73,6 +74,7 @@ struct Fcall #define NOTAG (ushort)~0U /* Dummy tag */ #define NOFID (u32int)~0U /* Dummy fid */ +#define NOUID (-1) /* Dummy uid */ #define IOHDRSZ 24 /* ample room for Twrite/Rread header (iounit) */ enum |