diff options
author | ache <ache@FreeBSD.org> | 1993-11-18 01:19:06 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1993-11-18 01:19:06 +0000 |
commit | dbf6b5a2db39d182aba158f88c9cd5005db5d6e0 (patch) | |
tree | 0e5f18d84859209447d67f0b8487f0a660c70730 | |
parent | bd8d47ba7677c8768ad0b1e0f415a83cd720ea6a (diff) | |
download | FreeBSD-src-dbf6b5a2db39d182aba158f88c9cd5005db5d6e0.zip FreeBSD-src-dbf6b5a2db39d182aba158f88c9cd5005db5d6e0.tar.gz |
remove HAVE_SETPGRP, because it doesn't detach terminal
in POSIX (setsid() is only way to do it)
-rw-r--r-- | gnu/libexec/uucp/common_sources/conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/libexec/uucp/common_sources/conf.h b/gnu/libexec/uucp/common_sources/conf.h index c0eacf6..9053c44 100644 --- a/gnu/libexec/uucp/common_sources/conf.h +++ b/gnu/libexec/uucp/common_sources/conf.h @@ -339,7 +339,7 @@ /* The code will use one of the following functions when detaching from a terminal. One of these must exist. */ -#define HAVE_SETPGRP 1 +#define HAVE_SETPGRP 0 #define HAVE_SETSID 1 /* If you do not specify the local node name in the main configuration |