smb_fname, (handle, smb_fname, mode, dev));
}
+static int syncops_mknodat(vfs_handle_struct *handle,
+ files_struct *dirfsp,
+ const struct smb_filename *smb_fname,
+ mode_t mode,
+ SMB_DEV_T dev)
+{
+ SYNCOPS_NEXT_SMB_FNAME(MKNODAT,
+ smb_fname,
+ (handle,
+ dirfsp,
+ smb_fname,
+ mode,
+ dev));
+}
+
static int syncops_mkdir(vfs_handle_struct *handle,
const struct smb_filename *smb_fname,
mode_t mode)
.symlink_fn = syncops_symlink,
.linkat_fn = syncops_linkat,
.mknod_fn = syncops_mknod,
+ .mknodat_fn = syncops_mknodat,
.close_fn = syncops_close,
};