~ft/c9

aa98d28d4582ecdd6a54dda839189ea7c6648a5a — Sigrid Solveig Haflínudóttir 1 year, 4 months ago 3196726
C9stat: put qid first, as it has to match with qid[0]
1 files changed, 1 insertions(+), 1 deletions(-)

M c9.h
M c9.h => c9.h +1 -1
@@ 151,12 151,12 @@ struct C9qid
 */
struct C9stat
{
	C9qid qid;   /* Same as qid[0]. */
	uint64_t size; /* Size of the file (in bytes). */
	char *name;  /* Name of the file. */
	char *uid;   /* Owner of the file. */
	char *gid;   /* Group of the file. */
	char *muid;  /* The user who modified the file last. */
	C9qid qid;   /* Same as qid[0]. */
	uint32_t mode;   /* Permissions. See C9st* and C9perm. */
	uint32_t atime;  /* Last access time. */
	uint32_t mtime;  /* Last modification time. */