X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=debian%2Fpatches%2F06-dont-check-exec-bit.patch;fp=debian%2Fpatches%2F06-dont-check-exec-bit.patch;h=28606e2f46c73644c88b0b38772443544c07ac89;hb=f96c403d8d7089e83c8077498855efe54a4c2366;hp=0000000000000000000000000000000000000000;hpb=b16970c2d1de9b9ef5b6ac34eb558845beb780fe;p=nfs-utils.git diff --git a/debian/patches/06-dont-check-exec-bit.patch b/debian/patches/06-dont-check-exec-bit.patch new file mode 100644 index 0000000..28606e2 --- /dev/null +++ b/debian/patches/06-dont-check-exec-bit.patch @@ -0,0 +1,15 @@ +Index: nfs-utils-1.1.2/utils/mount/mount.c +=================================================================== +--- nfs-utils-1.1.2.orig/utils/mount/mount.c 2008-07-11 18:59:58.000000000 +0200 ++++ nfs-utils-1.1.2/utils/mount/mount.c 2008-07-11 18:59:58.000000000 +0200 +@@ -381,10 +381,6 @@ + mount_error(NULL, mount_point, ENOTDIR); + return 1; + } +- if (access(mount_point, X_OK) < 0) { +- mount_error(NULL, mount_point, errno); +- return 1; +- } + + return 0; + }