diff options
author | Volker Lendecke <vl@samba.org> | 2008-01-25 20:52:20 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-01-25 20:53:21 +0100 |
commit | 0b10c67c0c2b2bf3ea1f55eff092739e435433c1 (patch) | |
tree | 159fcc71ebbb86e0f4401ad573f6d064e8d828cb /source3/modules | |
parent | 235deb1b66ccfb4a264010e8ffe11a3a3682ac0d (diff) | |
download | samba-0b10c67c0c2b2bf3ea1f55eff092739e435433c1.tar.gz samba-0b10c67c0c2b2bf3ea1f55eff092739e435433c1.tar.xz samba-0b10c67c0c2b2bf3ea1f55eff092739e435433c1.zip |
Attempt to fix the build on OpenBSD
Thanks to metze for pointing this out
(This used to be commit c94c04e3e6f6ae243a55534a76654755bff55651)
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_xattr_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_xattr_tdb.c b/source3/modules/vfs_xattr_tdb.c index 208066bedca..171022b01b6 100644 --- a/source3/modules/vfs_xattr_tdb.c +++ b/source3/modules/vfs_xattr_tdb.c @@ -579,7 +579,7 @@ static bool xattr_tdb_init(int snum, struct db_context **p_db) lock_path("xattr.tdb")); if (dbname == NULL) { - errno = ENOTSUP; + errno = ENOSYS; return false; } |