summaryrefslogtreecommitdiff
path: root/security/identify
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-10-21 00:52:28 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-10-21 00:52:28 +0000
commit258e006f52a2e57513b3115a54e4b54b9d4a7499 (patch)
treedd4e170985b435908a292e4b6c6940644b373578 /security/identify
parentAdd gettext dependency to unbreak building this port (diff)
Fix build on -current (_exit() -> _exit(0))
Notes
Notes: svn path=/head/; revision=68464
Diffstat (limited to 'security/identify')
-rw-r--r--security/identify/files/patch-ab11
1 files changed, 10 insertions, 1 deletions
diff --git a/security/identify/files/patch-ab b/security/identify/files/patch-ab
index bd6878e20238..75cb4dcb71f0 100644
--- a/security/identify/files/patch-ab
+++ b/security/identify/files/patch-ab
@@ -1,5 +1,5 @@
--- identify.c.orig Tue Feb 2 01:51:57 1993
-+++ identify.c Fri Apr 2 10:57:28 1999
++++ identify.c Sun Oct 20 17:53:44 2002
@@ -11,7 +11,7 @@
#include <stdio.h>
#include <signal.h>
@@ -113,6 +113,15 @@
case 'R':
if (!argv[i][2])
reject_flag = 1;
+@@ -200,7 +173,7 @@
+ {
+ /* In child, let's fork again so we can forget about this child */
+ if (fork())
+- _exit();
++ _exit(0);
+ }
+ else
+ {
@@ -241,13 +214,13 @@
}
}