Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 590084 | Differences between
and this patch

Collapse All | Expand All

(-)a/libsandbox/libsandbox.c (-3 / +8 lines)
Lines 971-978 static int check_syscall(sbcontext_t *sbcontext, int sb_nr, const char *func, Link Here
971
		return 2;
971
		return 2;
972
972
973
	/* If we get here, something bad happened */
973
	/* If we get here, something bad happened */
974
	sb_ebort("ISE: %s(%s)\n\tabs_path: %s\n\tres_path: %s\n",
974
	sb_ebort("ISE: %s(%s)\n"
975
		func, file, absolute_path, resolved_path);
975
		"\tabs_path: %s\n"
976
		"\tres_path: %s\n"
977
		"\terrno=%i: %s\n",
978
		func, file,
979
		absolute_path,
980
		resolved_path,
981
		errno, strerror(errno));
976
}
982
}
977
983
978
bool is_sandbox_on(void)
984
bool is_sandbox_on(void)
979
- 

Return to bug 590084