ref: aa98d28d4582ecdd6a54dda839189ea7c6648a5a
parent: 3196726bc5d4d308995fbfb00a2da55cd1118a14
author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
date: Sun May 15 07:30:26 EDT 2022
C9stat: put qid first, as it has to match with qid[0]
--- a/c9.h
+++ b/c9.h
@@ -151,12 +151,12 @@
*/
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. */