aboutsummaryrefslogtreecommitdiff
blob: 402ea9dc735f3629de0b7a7208327778d2246151 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * get_sandbox_rc.c
 *
 * Util functions.
 *
 * Copyright 1999-2008 Gentoo Foundation
 * Licensed under the GPL-2
 *
 * Some parts might have Copyright:
 *   Copyright (C) 2002 Brad House <brad@mainstreetsoftworks.com>
 */

#include "headers.h"
#include "sbutil.h"

void get_sandbox_rc(char *path)
{
	save_errno();
	if (is_env_on(ENV_SANDBOX_TESTING))
		snprintf(path, SB_PATH_MAX, "%s/data/%s",
			getenv("abs_top_srcdir"), BASHRC_NAME);
	else
		snprintf(path, SB_PATH_MAX, "%s/%s",
			SANDBOX_BASHRC_PATH, BASHRC_NAME);
	restore_errno();
}