X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=debian%2Fpatches%2F07-daemonize-instead-of-fork.patch;fp=debian%2Fpatches%2F07-daemonize-instead-of-fork.patch;h=0000000000000000000000000000000000000000;hb=9438b647be378ec0f578697b613de723e02312a2;hp=5ae0f899c06724b5a2ecaef04dc97817f0a999fd;hpb=6826dcf4e9e00f466ecaeeb8369dc7308df36a86;p=nfs-utils.git diff --git a/debian/patches/07-daemonize-instead-of-fork.patch b/debian/patches/07-daemonize-instead-of-fork.patch deleted file mode 100644 index 5ae0f89..0000000 --- a/debian/patches/07-daemonize-instead-of-fork.patch +++ /dev/null @@ -1,15 +0,0 @@ -Index: nfs-utils-1.1.1~git-20070709/utils/mount/mount.c -=================================================================== ---- nfs-utils-1.1.1~git-20070709.orig/utils/mount/mount.c -+++ nfs-utils-1.1.1~git-20070709/utils/mount/mount.c -@@ -530,9 +530,7 @@ int main(int argc, char *argv[]) - * Parent exits immediately with success. Make - * sure not to free "mount_point" - */ -- if (fork() > 0) -- exit(0); -- -+ daemon(0,0); - mnt_err = try_mount(spec, mount_point, flags, fs_type, - &extra_opts, mount_opts, fake, - nomtab, BACKGROUND);