aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/mountd/patches/040-optional-daemonize.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2015-09-14 20:12:21 +0000
committerJohn Crispin <john@openwrt.org>2015-09-14 20:12:21 +0000
commitbef03edb7ac4d95f688ad826d7fb3452c303dd15 (patch)
tree0ca502c8a83af4295bde32907f76b7b6163dbfa2 /package/system/mountd/patches/040-optional-daemonize.patch
parent0dbced8a484faeb8bea0c29a35c1b0f6d58dbf4c (diff)
downloadupstream-bef03edb7ac4d95f688ad826d7fb3452c303dd15.tar.gz
upstream-bef03edb7ac4d95f688ad826d7fb3452c303dd15.tar.bz2
upstream-bef03edb7ac4d95f688ad826d7fb3452c303dd15.zip
mountd: move code to a git repo
Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 46935
Diffstat (limited to 'package/system/mountd/patches/040-optional-daemonize.patch')
-rw-r--r--package/system/mountd/patches/040-optional-daemonize.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/system/mountd/patches/040-optional-daemonize.patch b/package/system/mountd/patches/040-optional-daemonize.patch
deleted file mode 100644
index 4d159ec668..0000000000
--- a/package/system/mountd/patches/040-optional-daemonize.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/main.c
-+++ b/main.c
-@@ -13,7 +13,9 @@
-
- int main(int argc, char *argv[])
- {
-- daemon(0,0);
-+ if ((argc < 2) || strcmp(argv[1], "-f"))
-+ daemon(0,0);
-+
- daemonize = 1;
- log_start();
- log_printf("Starting OpenWrt (auto)mountd V1\n");