diff options
Diffstat (limited to 'lib9p/tests/test_server/fs_flush.c')
-rw-r--r-- | lib9p/tests/test_server/fs_flush.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lib9p/tests/test_server/fs_flush.c b/lib9p/tests/test_server/fs_flush.c index 779eb91..821f32d 100644 --- a/lib9p/tests/test_server/fs_flush.c +++ b/lib9p/tests/test_server/fs_flush.c @@ -35,21 +35,21 @@ static struct lib9p_stat flush_file_stat(struct flush_file *self, struct lib9p_s assert(self); assert(ctx); return (struct lib9p_stat){ - .kern_type = 0, - .kern_dev = 0, - .file_qid = flush_file_qid(self), - .file_mode = 0444, - .file_atime = UTIL9P_ATIME, - .file_mtime = UTIL9P_MTIME, - .file_size = 6, - .file_name = lib9p_str(self->name), - .file_owner_uid = lib9p_str("root"), - .file_owner_gid = lib9p_str("root"), - .file_last_modified_uid = lib9p_str("root"), - .file_extension = lib9p_str(NULL), - .file_owner_n_uid = 0, - .file_owner_n_gid = 0, - .file_last_modified_n_uid = 0, + .fstype = 0, + .fsdev = 0, + .qid = flush_file_qid(self), + .mode = 0444, + .atime = UTIL9P_ATIME, + .mtime = UTIL9P_MTIME, + .length = 6, + .name = lib9p_str(self->name), + .owner_uname = lib9p_str("root"), + .owner_unum = 0, + .owner_gname = lib9p_str("root"), + .owner_gnum = 0, + .last_modifier_uname = lib9p_str("root"), + .last_modifier_unum = 0, + .extension = lib9p_str(NULL), }; } static void flush_file_wstat(struct flush_file *self, struct lib9p_srv_ctx *ctx, struct lib9p_stat) { |