diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2006-07-13 16:16:30 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2006-07-13 16:16:30 +0000 |
commit | a4335f8ad6f714c31fd25139b5d8986119672fc9 (patch) | |
tree | fc0d67ad120e6c2d848eaf9198aff3a18fde8499 /src | |
parent | Split out environment related functions, and make their naming a bit more sane. (diff) | |
download | sandbox-a4335f8ad6f714c31fd25139b5d8986119672fc9.tar.gz sandbox-a4335f8ad6f714c31fd25139b5d8986119672fc9.tar.bz2 sandbox-a4335f8ad6f714c31fd25139b5d8986119672fc9.zip |
Punt old copyright stuff, as nearly everything was rewrited. If something is was not and is pointed out, I will rectify it.
Signed-off-by: Martin Schlemmer <azarah@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/sandbox.c | 43 |
1 files changed, 27 insertions, 16 deletions
diff --git a/src/sandbox.c b/src/sandbox.c index 71ddb7f..8120075 100644 --- a/src/sandbox.c +++ b/src/sandbox.c @@ -1,20 +1,31 @@ /* -** Path sandbox for the gentoo linux portage package system, initially -** based on the ROCK Linux Wrapper for getting a list of created files -** -** to integrate with bash, bash should have been built like this -** -** ./configure --prefix=<prefix> --host=<host> --without-gnu-malloc -** -** it's very important that the --enable-static-link option is NOT specified -** -** Copyright (C) 2001 Geert Bevin, Uwyn, http://www.uwyn.com -** Distributed under the terms of the GNU General Public License, v2 or later -** Author : Geert Bevin <gbevin@uwyn.com> -** $Header$ -*/ - -/* #define _GNU_SOURCE */ + * sandbox.c + * + * Main sandbox related functions. + * + * Copyright 1999-2006 Gentoo Foundation + * + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation version 2 of the License. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 675 Mass Ave, Cambridge, MA 02139, USA. + * + * Some parts might have Copyright: + * + * Copyright (C) 2002 Brad House <brad@mainstreetsoftworks.com> + * + * $Header$ + */ + #include <errno.h> #include <signal.h> |