summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2019-08-20 16:28:18 -0700
committerJeremy Allison <jra@samba.org>2019-08-22 18:00:33 +0000
commite4c4af64fa7fde3ff116390182628235a2fb7185 (patch)
treeb24066a47869c72970aec19ef95f0bf37074a15a /source3/include
parentc68671bb949159de77170d8b73883171c50c9d96 (diff)
downloadsamba-e4c4af64fa7fde3ff116390182628235a2fb7185.tar.gz
s3: smbd: Add sys_mknodat() wrapper call.
Signed-off-by: Jeremy Allison <jra@samba.org> Reviewed-by: Ralph Böhme <slow@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index e3ed2b8e4cb..17ea54fc4fe 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -234,6 +234,7 @@ int sys_fallocate(int fd, uint32_t mode, off_t offset, off_t len);
void kernel_flock(int fd, uint32_t share_mode, uint32_t access_mask);
DIR *sys_fdopendir(int fd);
int sys_mknod(const char *path, mode_t mode, SMB_DEV_T dev);
+int sys_mknodat(int dirfd, const char *path, mode_t mode, SMB_DEV_T dev);
char *sys_getwd(void);
void set_effective_capability(enum smbd_capability capability);
void drop_effective_capability(enum smbd_capability capability);