From: Volker Lendecke Date: Sun, 3 Sep 2006 08:16:25 +0000 (+0000) Subject: r18016: OpenBSD apparently does not have ENOTSUP X-Git-Tag: samba-4.0.0alpha6~801^2~7733 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b540e4dc846b8002e8208183bde4ea0f312d98a8;p=thirdparty%2Fsamba.git r18016: OpenBSD apparently does not have ENOTSUP (This used to be commit 8e087b7e462aaa14e3918cdfe125f8375d4d5fd8) --- diff --git a/source3/lib/sysacls.c b/source3/lib/sysacls.c index 00264bf0ce0..d31c1870c34 100644 --- a/source3/lib/sysacls.c +++ b/source3/lib/sysacls.c @@ -548,34 +548,54 @@ int sys_acl_delete_def_file(vfs_handle_struct *handle, SMB_ACL_T sys_acl_get_file(vfs_handle_struct *handle, const char *path_p, SMB_ACL_TYPE_T type) { +#ifdef ENOTSUP errno = ENOTSUP; +#else + errno = ENOSYS; +#endif return NULL; } SMB_ACL_T sys_acl_get_fd(vfs_handle_struct *handle, files_struct *fsp, int fd) { +#ifdef ENOTSUP errno = ENOTSUP; +#else + errno = ENOSYS; +#endif return NULL; } int sys_acl_set_file(vfs_handle_struct *handle, const char *name, SMB_ACL_TYPE_T type, SMB_ACL_T acl_d) { +#ifdef ENOTSUP errno = ENOTSUP; +#else + errno = ENOSYS; +#endif return -1; } int sys_acl_set_fd(vfs_handle_struct *handle, files_struct *fsp, int fd, SMB_ACL_T acl_d) { +#ifdef ENOTSUP errno = ENOTSUP; +#else + errno = ENOSYS; +#endif return -1; } int sys_acl_delete_def_file(vfs_handle_struct *handle, const char *path) { +#ifdef ENOTSUP errno = ENOTSUP; +#else + errno = ENOSYS; +#endif return -1; }