nixpkgs/pkgs/os-specific/gnu/smbfs/samba-without-byte-range-locks.patch
Ludovic Courtès bb08271aa6 SMBFS: Disable byte-range locking in Samba's TDB.
svn path=/nixpkgs/trunk/; revision=32732
2012-03-01 23:07:56 +00:00

15 lines
477 B
Diff

Since GNU/Hurd doesn't support byte-range file locks, shamelessly
disable them to allow the SMB client library to work (it uses TDB
to access /etc/samba/private/secrets.tdb, for instance.)
--- samba/lib/tdb/common/lock.c 2010-02-08 16:12:57.000000000 +0100
+++ samba/lib/tdb/common/lock.c 2012-03-01 23:39:02.000000000 +0100
@@ -48,7 +48,7 @@ int tdb_brlock(struct tdb_context *tdb,
struct flock fl;
int ret;
- if (tdb->flags & TDB_NOLOCK) {
+ if (1) {
return 0;
}