diff options
Diffstat (limited to '')
-rw-r--r-- | www-misc/slowcgi/files/6.8-Add-flag-to-run-in-the-foreground.patch (renamed from www-misc/slowcgi/files/6.7-Add-flag-to-run-in-the-foreground.patch) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www-misc/slowcgi/files/6.7-Add-flag-to-run-in-the-foreground.patch b/www-misc/slowcgi/files/6.8-Add-flag-to-run-in-the-foreground.patch index ecf6fff..a9f9e26 100644 --- a/www-misc/slowcgi/files/6.7-Add-flag-to-run-in-the-foreground.patch +++ b/www-misc/slowcgi/files/6.8-Add-flag-to-run-in-the-foreground.patch @@ -1,4 +1,4 @@ -From 6771bdc5dc8a42da2787aca1f83c1b93725f204e Mon Sep 17 00:00:00 2001 +From 71a5493a09045ef3d90db42bdb5e1947c2512900 Mon Sep 17 00:00:00 2001 From: Wynn Wolf Arbor <wolf@oriole.systems> Date: Fri, 5 Jun 2020 21:14:44 +0200 Subject: [PATCH] Add flag to run in the foreground @@ -20,7 +20,7 @@ whether or not the program daemonizes or not. 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/slowcgi.c b/slowcgi.c -index 87ae5b2..0a34c80 100644 +index 0b5d62a..01f8139 100644 --- a/slowcgi.c +++ b/slowcgi.c @@ -274,7 +274,7 @@ usage(void) @@ -48,7 +48,7 @@ index 87ae5b2..0a34c80 100644 + while ((c = getopt(argc, argv, "dfp:s:U:u:")) != -1) { switch (c) { case 'd': - debug = 1; + debug++; break; + case 'f': + foreground = 1; @@ -66,5 +66,5 @@ index 87ae5b2..0a34c80 100644 if (!debug) { -- -2.27.0 +2.30.0 |