diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-10-21 08:52:28 +0800 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-10-21 08:52:28 +0800 |
commit | 258e006f52a2e57513b3115a54e4b54b9d4a7499 (patch) | |
tree | dd4e170985b435908a292e4b6c6940644b373578 /security/identify | |
parent | fedb79f90d4a48e7ee57039b1d51afb1db6d501a (diff) | |
download | freebsd-ports-gnome-258e006f52a2e57513b3115a54e4b54b9d4a7499.tar.gz freebsd-ports-gnome-258e006f52a2e57513b3115a54e4b54b9d4a7499.tar.zst freebsd-ports-gnome-258e006f52a2e57513b3115a54e4b54b9d4a7499.zip |
Fix build on -current (_exit() -> _exit(0))
Diffstat (limited to 'security/identify')
-rw-r--r-- | security/identify/files/patch-ab | 11 |
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 @@ } } |