/* * get_sandbox_lib.c * * Util 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 * * $Header$ */ #include #include #include "sbutil.h" void get_sandbox_lib(char *path) { save_errno(); snprintf(path, SB_PATH_MAX, "%s/%s", LIBSANDBOX_PATH, LIB_NAME); if (!rc_file_exists(path)) { snprintf(path, SB_PATH_MAX, "%s", LIB_NAME); } restore_errno(); }